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 6754098 commit 57103deCopy full SHA for 57103de
1 file changed
.github/workflows/deploy-extension.yml
@@ -87,11 +87,11 @@ jobs:
87
- name: Commit version bump
88
if: success()
89
run: |
90
- git config --local user.email "github-actions[bot]@users.noreply.github.com"
91
- git config --local user.name "github-actions[bot]"
+ git config --local user.email "${{ secrets.EMAIL }}"
+ git config --local user.name "${{ secrets.USERNAME }}"
92
git add apps/extension/manifest.json
93
git commit -m "chore: bump extension version to ${{ env.VERSION }} [skip ci]"
94
- git push
+ git push origin HEAD:dev
95
96
- name: Restore original manifest on failure
97
if: failure()
0 commit comments