Skip to content

Commit b344549

Browse files
authored
fix(actions): deploy distribution folder back to origin
1 parent 8ea04aa commit b344549

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,13 @@ jobs:
3030
run: npx semantic-release
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
33-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
33+
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

Comments
 (0)