Skip to content

Commit

Permalink
Add build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacShelton committed Feb 6, 2024
1 parent 1f42a06 commit 7e737d9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7e737d9

Please sign in to comment.