diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 3d70b6d..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Release Build - -on: - release: - types: [created] - -jobs: - release: - name: release ${{ matrix.target }} - runs-on: ubuntu-latest - container: ubuntu:devel - 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 - - target: x86_64-apple-darwin - archive: zip - - steps: - - uses: actions/checkout@master - - name: Compile and release - uses: rust-build/rust-build.action@latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - RUSTTARGET: ${{ matrix.target }} - ARCHIVE_TYPES: ${{ matrix.archive }} \ No newline at end of file diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index ddbdb96..2a1ae46 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -41,3 +41,8 @@ jobs: uses: actions-rs/cargo@v1 with: command: test + + - uses: actions/upload-artifact@v3 + with: + name: mutiny + path: ~/target/debug/mutiny