diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 405c05c..e90521b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,10 +21,17 @@ jobs: archive: zip steps: - uses: actions/checkout@master - - name: Compile and release + - name: Compile uses: rust-build/rust-build.action@v1.4.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: RUSTTARGET: ${{ matrix.target }} ARCHIVE_TYPES: ${{ matrix.archive }} + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: Binary + path: | + ${{ steps.compile.outputs.BUILT_ARCHIVE }} + ${{ steps.compile.outputs.BUILT_CHECKSUM }}