We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c2f7a3 commit 0709703Copy full SHA for 0709703
.github/workflows/actions.yml
@@ -156,7 +156,11 @@ jobs:
156
# do not merge these steps, version is scraped by makefile
157
# at start of run, so needs to be bumped separately
158
- name: tag & commit
159
- run: make tag
+ 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
164
working-directory: getargv.cpp
165
- name: Release
166
uses: softprops/action-gh-release@v1
0 commit comments