Skip to content

Commit e707adb

Browse files
committed
commit and push to origin
1 parent 36cfa4f commit e707adb

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,14 @@ jobs:
9191
- name: Distribute app to Google Play's internal track 🚀
9292
working-directory: ./android/fastlane
9393
run: bundle exec fastlane deploy
94-
- uses: actions/checkout@v3
95-
with:
96-
token: ${{ secrets.PAT }}
97-
- run: |
98-
git config user.name github-actions
99-
git config user.email github-actions@github.com
94+
- name: Commit
95+
run: |
96+
git config --local user.name "github-actions[bot]"
97+
git config --local user.email "github-actions[bot]@users.noreply.github.com"
10098
git add android/app/build.gradle
101-
git commit -m "Automatic release" --no-verify
102-
git push
99+
git commit -m "chore: version update" --no-verify
100+
git push https://$USERNAME:$REPO_KEY@github.com/uqbar-project/wollok-mobile.git
101+
env:
102+
REPO_KEY: ${{secrets.PAT}}
103+
USERNAME: github-actions[bot]
104+

0 commit comments

Comments
 (0)