We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6380fc4 + 7a4878a commit a87c991Copy full SHA for a87c991
1 file changed
.github/workflows/publish.yml
@@ -11,6 +11,8 @@ jobs:
11
steps:
12
- uses: actions/checkout@v2
13
with:
14
+ persist-credentials: false
15
+ fetch-depth: 0
16
submodules: recursive
17
- uses: actions/setup-node@v2
18
@@ -22,6 +24,18 @@ jobs:
22
24
- run: npm publish --access public
23
25
env:
26
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
39
- uses: akhilmhdh/contributors-readme-action@v2.1.2
40
41
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments