-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (53 loc) · 1.42 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
name: Publish
on:
push:
branches:
- 'main'
jobs:
publish-rust:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Publish
uses: katyo/publish-crates@33e1d18666cdfacf9f6c3547194d2c1d39cbf849 # (v2)
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
ignore-unpublished-changes: true
path: ./rust
publish-js:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 8
- name: Install dependencies
working-directory: ./js
run: pnpm install
- name: Build
working-directory: ./js
run: pnpm run build
- name: Publish internal
working-directory: ./js
env:
npm_config_@caido:registry: https://npm.pkg.github.com
run: pnpm -r publish
- name: Publish
working-directory: ./js
env:
NPM_TOKEN: ${{ secrets.NPM_BOT_TOKEN }}
run: pnpm -r publish --access public