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 e78326b commit 44d26c5Copy full SHA for 44d26c5
1 file changed
.github/workflows/release.yml
@@ -18,6 +18,11 @@ jobs:
18
- run: npx semantic-release
19
env:
20
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
- - run: "git push https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/v1"
+ - run: |
22
+ git config user.name github-actions
23
+ git config user.email github-actions@github.com
24
+ git add .
25
+ git commit -m "build"
26
+ git push --force https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/v1"
27
28
0 commit comments