-
-
Notifications
You must be signed in to change notification settings - Fork 605
46 lines (33 loc) · 1.05 KB
/
npm-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Publish to npm
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.release.target_commitish }}
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm test
- run: npm run build
- run: git config --global user.name "GitHub CD bot"
- run: git config --global user.email "[email protected]"
- run: npm version ${{ github.event.release.tag_name }} --no-git-tag-version
- run: git add . && git commit -m "[Release] ${{ github.event.release.tag_name }}"
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
name: react-ace.min.js
path: dist/react-ace.min.js
- run: git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}