@@ -13,11 +13,13 @@ jobs:
13
13
- uses : actions/setup-node@v1
14
14
with :
15
15
node-version : 14
16
- - run : git config --global user.name "JeremyDolle"
17
- -
run :
git config --global user.email "[email protected] "
18
- - run : npm version ${{ github.event.release.tag_name }}
19
- - run : git commit -am "🏷️(version) Update boilerplate to version ${{ github.event.release.tag_name }}"
20
- - run : git push
16
+ - name : Update package.json and push
17
+ run : |
18
+ git config --global user.name "JeremyDolle"
19
+ git config --global user.email "[email protected] "
20
+ npm version ${{ github.event.release.tag_name }}
21
+ git commit -am "🏷️(version) Update boilerplate to version ${{ github.event.release.tag_name }}"
22
+ git push
21
23
env :
22
24
github-token : ${{ secrets.GITHUB_TOKEN }}
23
25
- uses : JS-DevTools/npm-publish@v1
@@ -31,11 +33,13 @@ jobs:
31
33
- uses : actions/setup-node@v1
32
34
with :
33
35
node-version : 14
34
- - run : git config --global user.name "JeremyDolle"
35
- -
run :
git config --global user.email "[email protected] "
36
- - run : npm version ${{ github.event.release.tag_name }}
37
- - run : git commit -am "🏷️(version) Update boilerplate to version ${{ github.event.release.tag_name }}"
38
- - run : git push
36
+ - name : Update package.json and push
37
+ run : |
38
+ git config --global user.name "JeremyDolle"
39
+ git config --global user.email "[email protected] "
40
+ npm version ${{ github.event.release.tag_name }}
41
+ git commit -am "🏷️(version) Update boilerplate to version ${{ github.event.release.tag_name }}"
42
+ git push
39
43
env :
40
44
github-token : ${{ secrets.GITHUB_TOKEN }}
41
45
- uses : JS-DevTools/npm-publish@v1
0 commit comments