From c13a109cec8d45e9af5a922a415a95657df28098 Mon Sep 17 00:00:00 2001 From: Benjamin Pannell Date: Thu, 25 Apr 2024 00:31:49 +0100 Subject: [PATCH] ci: Publish build artifacts for each supported platform --- .github/workflows/rust.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7146e45..2e2c814 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -170,3 +170,10 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} overwrite: "true" + - name: Upload build artifacts + uses: actions/upload-artifact@v4 + if: github.event_name == 'push' + with: + name: grey-${{ matrix.os }}-${{ matrix.arch }}${{ matrix.extension }} + path: target/${{ matrix.target }}/release/grey${{ matrix.extension }} +