Skip to content

Commit

Permalink
workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Jul 27, 2024
1 parent 1ae9ed1 commit 71fd96e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,10 @@ jobs:
run: cmake -B build -DCMAKE_BUILD_TYPE=Release

- name: Build
run: cmake --build build --config Release
run: cmake --build build --config Release

- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
name: build-linux
path: build/
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
name: build-${{ matrix.arch }}
name: build-macos-${{ matrix.arch }}
path: build/

create-universal-dylibs:
Expand Down

0 comments on commit 71fd96e

Please sign in to comment.