Skip to content

Commit

Permalink
Update github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
whyb committed Jan 17, 2025
1 parent 28378ac commit 48fc124
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,14 @@ jobs:
- name: Build
run: cmake --build build --config Release

- name: List build folder
run: ls ./build/

- name: Archive Linux build artifacts
uses: actions/upload-artifact@v3
with:
name: linux-artifacts
path: build/
path: build/**

build-windows:
runs-on: windows-latest
Expand All @@ -59,12 +62,15 @@ jobs:

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

- name: List build folder
run: dir .\build\

- name: Archive Windows build artifacts
uses: actions/upload-artifact@v3
with:
name: windows-artifacts
path: build/
path: build/**

release:
needs: [build-linux, build-windows]
Expand Down

0 comments on commit 48fc124

Please sign in to comment.