From 96337b6b4897d571b0094180f08936e1c773ccaa Mon Sep 17 00:00:00 2001 From: sreedev Date: Mon, 23 Jan 2023 02:39:37 -0500 Subject: [PATCH] artifacts upload options added to github workflows --- .github/workflows/release.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 }}