diff --git a/.cargo/config b/.cargo/config index fcf0da7d..f8b84118 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,3 +1,4 @@ [alias] 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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8605d6a6..258fe338 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,8 +4,6 @@ on: push: - tags: - - '*' name: Release artifacts @@ -26,7 +24,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)