Skip to content

Commit

Permalink
build: fix output version (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlmogBaku authored Feb 9, 2024
2 parents c822654 + 79cc265 commit a09d074
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ jobs:
- name: Build and push the containers
run: |
make generate docker-build bundle installer \
VERSION=${{ steps.version.outputs.version }} \
BUNDLE_VERSION=${{ steps.version.outputs.tag }} \
CHANNELS=${{ steps.bundle_channel.outputs.channel }} \
DOCKER_BUILD_FLAGS="--platform linux/amd64,linux/arm64 --push"
ENV=prod
VERSION=${{ steps.version.outputs.version }} \
BUNDLE_VERSION=${{ steps.version.outputs.tag }} \
CHANNELS=${{ steps.bundle_channel.outputs.channel }} \
DOCKER_BUILD_FLAGS="--platform linux/amd64,linux/arm64 --push" \
ENV=prod
docker push --all-tags ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-bundle
- name: Update changelog
shell: bash
Expand Down

0 comments on commit a09d074

Please sign in to comment.