We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db29007 commit eee0538Copy full SHA for eee0538
.github/workflows/CI-bump-build-number.yml
@@ -16,10 +16,15 @@ jobs:
16
run: |
17
xcrun agvtool next-version -all
18
19
- - name: Push Changes
+ - name: Commit Changes
20
21
git add .
22
git config --local user.email "action@github.com"
23
git config --local user.name "GitHub Action"
24
git commit -m "bump build number"
25
- git push origin HEAD -f
+ - name: Push Changes
26
+ uses: ad-m/github-push-action@v0.6.0
27
+ with:
28
+ github_token: ${{ secrets.GITHUB_TOKEN }}
29
+ branch: main
30
+ force: true
0 commit comments