File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,38 +22,38 @@ jobs:
2222 with :
2323 fetch-depth : 0
2424
25- - name : Setup Git
25+ - name : 🛠️ Setup Git
2626 run : |
2727 git config --global user.name 'GitHub Actions Bot'
2828 git config --global user.email 'github-actions[bot]@users.noreply.github.com'
2929
30- - name : Setup Node.js
30+ - name : 🛠️ Setup Node.js
3131 uses : actions/setup-node@v3
3232 with :
3333 node-version : ' 18.x'
3434 registry-url : ' https://registry.npmjs.org'
3535
36- - name : Install dependencies
36+ - name : 🛠️ Install dependencies
3737 run : yarn
3838
39- - name : Build
39+ - name : 🛠️ Build
4040 run : yarn build
4141
42- - name : Create new version
42+ - name : 🟢 Create new version
4343 run : |
4444 npm version ${{ inputs.release_type }}
4545
46- - name : Push changes
46+ - name : 🌍 Push changes
4747 run : |
4848 git push
4949 git push --tags
5050
51- - name : Publish to NPM
51+ - name : 🌍 Publish to NPM
5252 run : npm publish
5353 env :
5454 NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
5555
56- - name : Create GitHub Release
56+ - name : 📝 Create GitHub Release
5757 uses : softprops/action-gh-release@v1
5858 with :
5959 tag_name : v$(node -p "require('./package.json').version")
You can’t perform that action at this time.
0 commit comments