Drone CI doesn't support `${}` syntax for bash variables.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Fabio Manganiello 2023-09-18 11:54:32 +02:00
parent 83ffa9f4a8
commit 82e3f317bc
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 4 additions and 4 deletions

View File

@ -277,14 +277,14 @@ steps:
- export GIT_VERSION="$VERSION.r$(git log --pretty=oneline HEAD...v$VERSION | wc -l).$HEAD"
- export TAG_URL="https://git.platypush.tech/platypush/platypush/archive/v$VERSION.tar.gz"
- export TAG_ARCHIVE="platypush-$VERSION.tar.gz"
- export GIT_BUILD_DIR="${WORKDIR}/${GIT_PKG_NAME}_${GIT_VERSION}_all"
- export PKGNAME="${PWD}/${GIT_PKG_NAME}_${GIT_VERSION}.deb"
- export GIT_BUILD_DIR="$WORKDIR/$GIT_PKG_NAME_$GIT_VERSION_all"
- export PKGNAME="$WORKDIR/$${GIT_PKG_NAME}_$${GIT_VERSION}.deb"
- echo "--- Building git package"
- pip install --prefix="$GIT_BUILD_DIR" --no-cache --no-deps .
- mkdir -p "${GIT_BUILD_DIR}/__all/DEBIAN"
- mkdir -p "$GIT_BUILD_DIR/__all/DEBIAN"
- |
cat <<EOF > "${GIT_BUILD_DIR}/__all/DEBIAN/control"
cat <<EOF > "$GIT_BUILD_DIR/__all/DEBIAN/control"
Package: $GIT_PKG_NAME
Version: $GIT_VERSION
Maintainer: Fabio Manganiello <fabio@platypush.tech>