Skip to content

Commit

Permalink
fix: release versioning script; closes 364 (#367) (PR Merge)
Browse files Browse the repository at this point in the history
* build: fix release versioning

* fix: release versioning

* fix: release versioning script
  • Loading branch information
Ivelin Ivanov authored Aug 19, 2021
1 parent 9b0e17a commit e1e15d5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/prepare-semantic-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ docker --version
# Build docker images for arm32 and amd architectures
###

echo "Preparing docker release for AMD64 architecture"
export ARCH="linux/amd64"
export TAG_SUFFIX="amd64"
pwd
Expand All @@ -43,8 +44,9 @@ echo "ARCH=${ARCH}"
echo "TAG_SUFFIX=${TAG_SUFFIX}"
${GITHUB_WORKSPACE}/build/ci-prep-release-job.sh

export ARCH: "linux/arm/v7"
export TAG_SUFFIX: "arm32v7"
echo "Preparing docker release for ARM32 architecture "
export ARCH="linux/arm/v7"
export TAG_SUFFIX="arm32v7"
pwd
echo GITHUB_WORKSPACE=${GITHUB_WORKSPACE}
echo "ARCH=${ARCH}"
Expand Down

0 comments on commit e1e15d5

Please sign in to comment.