Skip to content

Commit

Permalink
try hoisting git out of make
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Feb 4, 2024
1 parent 1c2f7a3 commit 0709703
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,11 @@ jobs:
# do not merge these steps, version is scraped by makefile
# at start of run, so needs to be bumped separately
- name: tag & commit
run: make tag
run: |
git commit -am 'release ${{ steps.version.outputs.version }}'
git tag '${{ steps.version.outputs.version }}'
git push origin tag '${{ steps.version.outputs.version }}'
git push origin HEAD:main
working-directory: getargv.cpp
- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 0709703

Please sign in to comment.