1
0
Fork 0
mirror of synced 2024-10-05 20:44:47 +13:00

Merge pull request #11454 from Budibase/fix/fixing_master_release

Update master pipeline to fix the current tag issue
This commit is contained in:
Michael Drury 2023-08-07 13:24:34 +01:00 committed by GitHub
commit 06e3000af3

View file

@ -61,8 +61,8 @@ jobs:
id: currenttag
run: |
version=v$(./scripts/getCurrentVersion.sh)
echo 'Using tag $version'
echo "::set-output name=tag::$resversionult"
echo "Using tag $version"
echo "version=$version" >> "$GITHUB_OUTPUT"
- name: Build/release Docker images
run: |
@ -71,7 +71,7 @@ jobs:
env:
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
BUDIBASE_RELEASE_VERSION: ${{ steps.currenttag.outputs.tag }}
BUDIBASE_RELEASE_VERSION: ${{ steps.currenttag.outputs.version }}
release-helm-chart:
needs: [release-images]