-
Notifications
You must be signed in to change notification settings - Fork 5
48 lines (38 loc) · 1017 Bytes
/
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
name: Publish Package
on:
workflow_dispatch:
inputs:
beta:
description: Publish a beta version (npmjs)
default: false
required: true
type: boolean
jobs:
npmjs:
environment: npm-publish
runs-on: ubuntu-latest
defaults:
run:
working-directory: wasm
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: cargo install wasm-pack
working-directory: wasm
- name: Configure NPM
run: npm config set "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}"
- name: Build
run: ./build.sh
working-directory: wasm
- name: Publish
run: npm publish --tag ${{ inputs.beta && 'beta' || 'latest' }}
working-directory: dist/bundler
crates-io:
environment: crates-publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Publish
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}