-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (37 loc) · 1.18 KB
/
release.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
47
name: release
run-name: '${{github.workflow}}'
on: workflow_dispatch
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: init repo
run: |
git config user.name "Github Actions"
git config user.email "[email protected]"
- name: init pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: init node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: install dependencies
run: pnpm install
- name: new version
run: pnpm run version
- name: build
run: pnpm run build
- name: release
run: |
NPM_TOKEN=${{secrets.NPM_TOKEN}} pnpm run release:token
- name: commit
run: |
git add .
HUSKY=0 git commit -m "RELEASE: new version [skip ci]"
- name: push
run: git push && git push --tags