diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7da1167..dfa55d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,10 @@ jobs: # platform: windows-arm64 steps: - uses: actions/checkout@v4 - - uses: taiki-e/install-action@cross + - name: Install cross-compilation tools + uses: taiki-e/setup-cross-toolchain-action@v1 + with: + target: ${{ matrix.target }} - uses: taiki-e/upload-rust-binary-action@v1 with: bin: playground-api diff --git a/Cargo.lock b/Cargo.lock index 7422286..cf2d632 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1786,7 +1786,7 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "playground-api" -version = "0.1.2" +version = "0.1.3" dependencies = [ "amp-client", "amp-common", diff --git a/Cargo.toml b/Cargo.toml index ec48e11..0070776 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "playground-api" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "Apache-2.0" repository = "https://github.com/amphitheatre-app/playground-api"