Skip to content

Commit

Permalink
Fix tagging of releases (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhurley authored Sep 8, 2022
1 parent 3ac2963 commit 970eeb5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ jobs:
chglog format -i ./scripts/changelog.yml --template repo > ./docs/CHANGELOG.md
git commit -am "Updating changelog"
git push
if [[ -z "${PUBLISH_PACKAGE}" ]] && ${PUBLISH_PACKAGE}=true; then
git push origin "v${{env.VERSION}}"
git push origin "sdk/v${{env.VERSION}}"
fi
- name: Push Tags
if: ${{ inputs.publishPackages == 'true' }}
run: |
git push origin "v${{env.VERSION}}"
git push origin "sdk/v${{env.VERSION}}"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Docker Image
Expand Down

0 comments on commit 970eeb5

Please sign in to comment.