-
Notifications
You must be signed in to change notification settings - Fork 1
80 lines (63 loc) · 1.96 KB
/
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
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
name: Publish
on:
push:
tags:
- 'v*.*.*'
jobs:
publish_npm:
name: Publish to NPM
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-npm-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
id-token: write
env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: '@stoe'
- name: NPM config
run: |
npm pkg delete scripts.prepare
npm install --ignore-scripts --pure-lockfile
git ls-files -z . | xargs -0 git update-index --assume-unchanged
- name: NPM publish
run: npm publish --provenance --access public --workspaces
publish_gh:
name: Publish to GitHub
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-gh-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20
registry-url: 'https://npm.pkg.github.com'
scope: '@stoe'
- name: NPM config
run: |
npm pkg delete scripts.prepare
npm install --ignore-scripts --pure-lockfile
git ls-files -z . | xargs -0 git update-index --assume-unchanged
- name: GitHub Packages publish
run: npm publish --access public --workspaces