-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (61 loc) · 1.99 KB
/
Copy pathpublish.yaml
File metadata and controls
73 lines (61 loc) · 1.99 KB
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
name: Publish
on:
release:
types:
- published
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false
permissions: {}
jobs:
publish-npm:
name: Publish to npm
runs-on: ubuntu-24.04
timeout-minutes: 10
permissions:
contents: read
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Install Nix
uses: DeterminateSystems/determinate-nix-action@629b284231c2a82554b724e357e47fc6020833c8 # v3.21.2
with:
extra-conf: |
sandbox = false
ssl-cert-file = /etc/ssl/certs/ca-certificates.crt
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: "24.17.0"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: nix develop --command bun install --frozen-lockfile
- name: Build
run: nix develop --command bun run build
- name: Publish to npm
run: nix develop --command bunx pnpm publish --provenance --access public --no-git-checks
publish-jsr:
name: Publish to JSR
runs-on: ubuntu-24.04
timeout-minutes: 10
permissions:
contents: read
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Install Nix
uses: DeterminateSystems/determinate-nix-action@629b284231c2a82554b724e357e47fc6020833c8 # v3.21.2
with:
extra-conf: |
sandbox = false
ssl-cert-file = /etc/ssl/certs/ca-certificates.crt
- name: Install dependencies
run: nix develop --command bun install --frozen-lockfile
- name: Publish to JSR
run: nix develop --command bun run publish:jsr