We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e4b897 commit 79e66bbCopy full SHA for 79e66bb
1 file changed
.github/workflows/publish.yml
@@ -35,6 +35,20 @@ jobs:
35
sed -i "s/^version = .*/version = \"$VERSION\"/" pyproject.toml
36
cat pyproject.toml | grep version
37
38
+ - name: Commit version bump
39
+ run: |
40
+ git config user.name "github-actions[bot]"
41
+ git config user.email "github-actions[bot]@users.noreply.github.com"
42
+ git add package.json package-lock.json
43
+ git commit -m "chore: bump version to ${{ steps.get_version.outputs.version }}" || echo "No changes to commit"
44
+
45
+ - name: Push changes
46
+ uses: ad-m/github-push-action@master
47
+ with:
48
+ github_token: ${{ secrets.GITHUB_TOKEN }}
49
+ branch: main
50
+ tags: false
51
52
- name: Install build dependencies
53
run: |
54
python -m pip install --upgrade pip
0 commit comments