From d625a6ec07ea84728d81abd124df44574cd248cc Mon Sep 17 00:00:00 2001 From: Keenan Tims Date: Sat, 18 Mar 2023 21:48:30 -0700 Subject: [PATCH] Upload artifacts in release workflow --- .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 1e93369..86a0fa1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,4 +24,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: RUSTTARGET: ${{ matrix.target }} - ARCHIVE_TYPES: ${{ matrix.archive }} \ No newline at end of file + 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 }} \ No newline at end of file