Skip to content

Commit 0709703

Browse files
committed
try hoisting git out of make
1 parent 1c2f7a3 commit 0709703

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/actions.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,11 @@ jobs:
156156
# do not merge these steps, version is scraped by makefile
157157
# at start of run, so needs to be bumped separately
158158
- name: tag & commit
159-
run: make tag
159+
run: |
160+
git commit -am 'release ${{ steps.version.outputs.version }}'
161+
git tag '${{ steps.version.outputs.version }}'
162+
git push origin tag '${{ steps.version.outputs.version }}'
163+
git push origin HEAD:main
160164
working-directory: getargv.cpp
161165
- name: Release
162166
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)