From 98cff08512b7cc6569c9fab07e4a364b9c95b250 Mon Sep 17 00:00:00 2001 From: Cain <75994858+cainthebest@users.noreply.github.com> Date: Tue, 26 Nov 2024 12:29:09 +0000 Subject: [PATCH] chore(ci): discontinue github releases --- .github/workflows/release.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 75bd3b3..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Release - -on: - release: - types: [created] - - workflow_dispatch: - -jobs: - release: - if: startsWith(github.event.release.tag_name, 'cli-') - name: Release ${{ matrix.target }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - include: - - target: x86_64-pc-windows-gnu - archive: zip - - target: x86_64-unknown-linux-musl - archive: tar.gz tar.xz tar.zst - - target: x86_64-apple-darwin - archive: zip - - target: wasm32-wasi - archive: zip tar.gz - steps: - - uses: actions/checkout@v4 - - name: Compile and release - uses: rust-build/rust-build.action@v1.4.5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - RUSTTARGET: ${{ matrix.target }} - ARCHIVE_TYPES: ${{ matrix.archive }} - SRC_DIR: ./crates/cli