We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7b7d02 + 2c9a766 commit 66023c8Copy full SHA for 66023c8
.cargo/config
@@ -1,4 +1,4 @@
1
[alias]
2
+schema = "run schema"
3
wasm = "build --release --lib --target wasm32-unknown-unknown"
-wasm-debug = "build --lib --target wasm32-unknown-unknown"
4
-schema = "run schema"
+wasm-debug = "build --lib --target wasm32-unknown-unknown"
.github/workflows/release.yml
@@ -4,6 +4,8 @@
5
on:
6
push:
7
+ tags:
8
+ - '*'
9
10
name: Release artifacts
11
@@ -24,7 +26,7 @@ jobs:
24
26
override: true
25
27
28
- name: Build schemas
- run: ./devtools/build_schemas.sh
29
+ run: ./scripts/build_schemas.sh
30
31
# This must go after the other cargo commands, as it writes lots of stuff to
32
# target/ with root permissions (from docker)
0 commit comments