Skip to content

Commit

Permalink
fix a fuckup in the build flow
Browse files Browse the repository at this point in the history
  • Loading branch information
PrincessRTFM committed Aug 27, 2023
1 parent 81838ba commit 896baec
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,12 @@ jobs:
retention-days: 14
- name: Tag
run: |
buildVersion=$(jq -j .AssemblyVersion "${{ env.INTERNAL_NAME }}/bin/${{ env.CONFIGURATION }}/${{ env.INTERNAL_NAME }}/${{ env.INTERNAL_NAME }}.json")
git tag -am "[Automated build $buildVersion]" "v$buildVersion"
git push origin "v$buildVersion"
git tag -am "[Automated build $BUILD_VERSION]" "$TAG_NAME"
git push origin "$TAG_NAME"
shell: bash
env:
BUILD_VERSION: ${{ needs.precheck.outputs.buildVersion }}
TAG_NAME: ${{ needs.precheck.outputs.tagName }}
GIT_AUTHOR_NAME: GitHub Action
GIT_COMMITTER_NAME: GitHub Action
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
Expand Down

0 comments on commit 896baec

Please sign in to comment.