Skip to content

Commit

Permalink
Merge pull request #11454 from Budibase/fix/fixing_master_release
Browse files Browse the repository at this point in the history
Update master pipeline to fix the current tag issue
  • Loading branch information
mike12345567 authored Aug 7, 2023
2 parents 38e8a4c + 216b315 commit 6e32fb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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]
Expand Down

0 comments on commit 6e32fb7

Please sign in to comment.