-
-
Notifications
You must be signed in to change notification settings - Fork 15
97 lines (75 loc) · 2.56 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: Release
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- run: echo ${{github.ref}}
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Build
run: pnpm run build
# publish:
# needs: build
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: pnpm/[email protected]
# with:
# version: 7
# - name: Install dependencies
# run: pnpm install --no-frozen-lockfile
# - name: Build
# run: pnpm run build
# - name: Pack
# run: pnpm pack
# - name: Result
# run: ls -al ./dist
# - name: Publish to NPM
# run: pnpm publish --access public --tag latest --no-git-checks
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# - name: Set package registry
# run: pnpm config set registry https://npm.pkg.github.com
# - name: Github package registry authentication
# run: pnpm set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}
# - name: Npm registry authentication
# run: pnpm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
# - name: Publish the package to Github package registry
# run: pnpm publish --access public --tag latest --no-git-checks
# env:
# NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install pnpm
run: npm install -g pnpm
- run: pnpm install
- run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
- name: Set package registry
run: pnpm config set registry https://npm.pkg.github.com
- name: Github package registry authentication
run: pnpm set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}
- name: Npm registry authentication
run: pnpm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
- name: Publish the package to Github and Npm package registries
run: pnpm publish --access=public