From 6784bb8861780e373098155306774aeba25f7b9d Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Thu, 11 Mar 2021 13:23:08 -0600 Subject: [PATCH] Remove bindings publish from CI. --- .github/workflows/release.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 87f292d..6bdc02d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,27 +62,6 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} args: --all-features --target wasm32-unknown-unknown - publish_winrt_bindings: - name: Publish winrt_bindings - runs-on: windows-latest - needs: [check] - env: - CARGO_TOKEN: ${{ secrets.CARGO_TOKEN }} - steps: - - uses: actions/checkout@v2 - - uses: Swatinem/rust-cache@v1 - - uses: actions-rs/toolchain@v1 - with: - target: wasm32-unknown-unknown - profile: minimal - toolchain: stable - components: rustfmt, clippy - override: true - - run: | - cargo login $CARGO_TOKEN - cd winrt_bindings - cargo publish || true - publish: name: Publish runs-on: ubuntu-latest