From 7d0d186f3d67844f2f5109837ed9e6ab81427ddc Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Fri, 3 Jan 2025 04:56:26 +0100 Subject: [PATCH] Upload artifact after building Could be used like a pre-release or for ease to not need to rebuild locally after a fix has been pushed to main --- .github/workflows/ci-build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 8696088..71587a8 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -38,3 +38,9 @@ jobs: - name: Build run: cargo build --release + + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: ${{ matrix.os }}-latest-build + path: target/release/arnis.exe