Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
natesdev authored Dec 27, 2024
1 parent 9a9e16f commit f0c27fe
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential g++
sudo apt-get install -y build-essential g++ mingw-w64
- name: Install libcsv
run: |
Expand All @@ -25,16 +25,22 @@ jobs:
sudo make install
cd ..
- name: Build Project
- name: Build Library
run: |
make clean
make all
make libbrawlermaker.a
make libbrawlermaker.so
- name: Build CLI
run: |
make bm
- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: |
bm
bm.exe
libbrawlermaker.a
libbrawlermaker.so

0 comments on commit f0c27fe

Please sign in to comment.