-
Notifications
You must be signed in to change notification settings - Fork 5
52 lines (41 loc) · 1.09 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
name: Publish Package
on:
push:
workflow_dispatch:
inputs:
beta:
description: Publish to the beta channel
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: Configure NPM
run: cargo login
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish
run: cargo publish --dry-run