Skip to content

Commit 47b192c

Browse files
committed
ci
1 parent 728ac82 commit 47b192c

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/manual-release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)