feat(wasm-web): Initialize

This commit is contained in:
Maxime Guerreiro 2020-12-20 14:28:04 +01:00 committed by GitHub
parent b760c7c9c7
commit edf74fc1ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

52
.github/workflows/publish-wasm-web.yml vendored Normal file
View File

@ -0,0 +1,52 @@
name: Publish (wasm for web)
env:
CARGO_INCREMENTAL: 0
CI: "1"
on:
create:
tags:
- v*
jobs:
build:
name: Build - wasm for web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/
**/target/
key: ${{ runner.os }}-publish-integration
- name: Install node dependencies
run: npm i
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Build
run: (cd wasm && wasm-pack build --release --scope=swc)
- name: Rename
run: |
sed -i'' -e 's/"name": "@swc\/wasm"/"name": "@swc\/wasm-web"/g' package.json
working-directory: wasm/pkg
- name: Publish
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
(cd wasm/pkg && npm publish)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}