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 8ea04aa commit b344549Copy full SHA for b344549
.github/workflows/publish.yml
@@ -30,4 +30,13 @@ jobs:
30
run: npx semantic-release
31
env:
32
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
33
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
+
34
+ - name: Push changes to remote repository
35
+ run: |
36
+ git config --global user.name '${{ github.actor }}'
37
+ git config --global user.email '${{ github.actor }}@users.noreply.github.com'
38
+ git add -A
39
+ git commit -am "chore(actions): adding new dist folder for release"
40
+ git push
41
+ env:
42
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments