Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b1b626d

Browse files
committedOct 2, 2024·
publish client
1 parent 72db486 commit b1b626d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
version: 'latest'
3333
# see https://stackoverflow.com/questions/58177786/get-the-current-pushed-tag-in-github-actions
3434
- run: |
35-
export VERSION=0.0.4 # ${{ github.event.release.tag_name }}
35+
export VERSION=0.0.5 # ${{ github.event.release.tag_name }}
3636
./scripts/publish-server.sh $VERSION
3737
# rustup target add wasm32-unknown-unknown # automatically done by wasm-pack
3838
./scripts/publish-client.sh $VERSION

‎scripts/build-remote-client.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ sed -i "s/const imports = __wbg_get_imports();/return __wbg_get_imports();/" dis
7676
pushd js
7777
mkdir -p dist
7878
rm -rf dist/*
79-
npn install
79+
npm install
8080
npm run build
8181
cp -r ../assets dist/
8282
cp package.json dist/

0 commit comments

Comments
 (0)
Please sign in to comment.