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 08c02c0 commit e69ceb9Copy full SHA for e69ceb9
.github/workflows/tmp.yml renamed to .github/workflows/bump_version.yml
@@ -32,11 +32,10 @@ jobs:
32
run: |
33
bumpver update --no-fetch --${{ github.event.inputs.vt }}
34
echo "ICATCHER_VER=$(bumpver show -n | awk 'END{print $NF}')" >> $GITHUB_ENV
35
-
36
- - name: Tag version
37
- run: |
38
- git tag
39
- git tag ${{ env.ICATCHER_VER }} master
40
41
- - name: Build package
42
- run: python -m build
+ - name: Commit changes
+ uses: EndBug/add-and-commit@v4
+ with:
+ author_name: ${{ github.actor }}
+ author_email: ${{ github.actor }}@users.noreply.github.com
+ message: "Version Bump to ${{ env.ICATCHER_VER }}"
+ add: "."
0 commit comments