Skip to content

Commit a87c991

Browse files
Merge pull request #12 from FDiskas/feature/sync-package-json
Sync package json
2 parents 6380fc4 + 7a4878a commit a87c991

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313
with:
14+
persist-credentials: false
15+
fetch-depth: 0
1416
submodules: recursive
1517
- uses: actions/setup-node@v2
1618
with:
@@ -22,6 +24,18 @@ jobs:
2224
- run: npm publish --access public
2325
env:
2426
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
27+
28+
- name: Commit files
29+
run: |
30+
git config --local user.email "yigithanyucedag@gmail.com"
31+
git config --local user.name "yigithanyucedag"
32+
git commit -m "Release: ${GITHUB_REF:11}" -a
33+
- name: Push changes
34+
uses: ad-m/github-push-action@master
35+
with:
36+
github_token: ${{ secrets.GITHUB_TOKEN }}
37+
branch: master
38+
2539
- uses: akhilmhdh/contributors-readme-action@v2.1.2
2640
env:
2741
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)