diff --git a/.cargo/config b/.cargo/config index f8b84118..038116e2 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,4 +1,4 @@ [alias] +schema = "run schema" wasm = "build --release --lib --target wasm32-unknown-unknown" -wasm-debug = "build --lib --target wasm32-unknown-unknown" -schema = "run schema" \ No newline at end of file +wasm-debug = "build --lib --target wasm32-unknown-unknown" \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d9f6613b..1f6c521a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,8 @@ on: push: + tags: + - '*' name: Release artifacts @@ -24,7 +26,7 @@ jobs: override: true - name: Build schemas - run: ./devtools/build_schemas.sh + run: ./scripts/build_schemas.sh # This must go after the other cargo commands, as it writes lots of stuff to # target/ with root permissions (from docker)