From 4e597d20f7f78493823c2d4997f98433108702a0 Mon Sep 17 00:00:00 2001 From: Eguo Wang Date: Thu, 28 Dec 2023 14:19:01 +0800 Subject: [PATCH] chore: replace `cross` with `taiki-e/setup-cross-toolchain-action` --- .github/workflows/release.yml | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) 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"