Skip to content

Commit e15c86f

Browse files
authored
update wasm toolchain after rustwasm archiving (#611)
1 parent 71f09cd commit e15c86f

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
- name: Install wasm-pack
6161
run: |
62-
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
62+
curl https://drager.github.io/wasm-pack/installer/init.sh -sSf | bash
6363
6464
- name: Build WASM version
6565
run: |

.github/workflows/wasm_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ jobs:
4949
- name: Install Rust toolchain
5050
uses: actions-rust-lang/setup-rust-toolchain@v1
5151
with:
52-
toolchain: 1.89.0
52+
toolchain: stable
5353

5454
- name: Install wasm-pack
5555
run: |
56-
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
56+
curl https://drager.github.io/wasm-pack/installer/init.sh -sSf | bash
5757
5858
- name: Build with wasm-pack
5959
env:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Add email notifications API
66
* Add email notifications registration API
77
* Added `app_url` property to config - defaults to `https://bitcredit-dev.minibill.tech` (config break)
8+
* Small fix to WASM build addressing the rustwasm organization archiving
89

910
# 0.4.4
1011

docs/wasm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
Make sure you have all [prerequisites](./prerequisites.md) installed.
66

7-
You also need the `wasm-pack` tool from [here](https://rustwasm.github.io/wasm-pack/installer/).
7+
You also need the `wasm-pack` tool from [here](https://drager.github.io/wasm-pack/installer/).
88

99
```bash
10-
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
10+
curl https://drager.github.io/wasm-pack/installer/init.sh -sSf | bash
1111
```
1212

1313
### Development

0 commit comments

Comments
 (0)