From 7e737d99294828371659f9f560875bd149a4c965 Mon Sep 17 00:00:00 2001 From: IsaacShelton Date: Tue, 6 Feb 2024 16:48:57 -0600 Subject: [PATCH] Add build artifacts --- .github/workflows/make.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 2b836da..f593f80 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -59,4 +59,22 @@ jobs: sudo apt-get install -y llvm-15 make ls + - name: Upload Build Artifact (Windows) + uses: actions/upload-artifact@v3 + if: ${{ matrix.os == 'windows-latest' }} + with: + name: adeptls-windows + path: adeptls.exe + - name: Upload Build Artifact (macOS) + uses: actions/upload-artifact@v3 + if: ${{ matrix.os == 'macos-latest' }} + with: + name: adeptls-macos + path: adeptls + - name: Upload Build Artifact (Ubuntu) + uses: actions/upload-artifact@v3 + if: ${{ matrix.os == 'ubuntu-latest' }} + with: + name: adeptls-ubuntu + path: adeptls