Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Alan Liddell <[email protected]>
  • Loading branch information
andy-sweet and aliddell authored Oct 2, 2023
1 parent 17eba82 commit f48a09c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:

- name: Build
run: |
cmake --build ${{github.workspace}}/pack --config Release
cpack --config ${{github.workspace}}/pack/CPackConfig.cmake -C Release -G ZIP
cmake --build ${{github.workspace}}/build--config Release
cpack --config ${{github.workspace}}/build/CPackConfig.cmake -C Release -G ZIP
- uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -80,8 +80,8 @@ jobs:

- name: Build
run: |
cmake --build ${{github.workspace}}/pack --config Release
cpack --config ${{github.workspace}}/pack/CPackConfig.cmake -C Release -G ZIP
cmake --build ${{github.workspace}}/build --config Release
cpack --config ${{github.workspace}}/build/CPackConfig.cmake -C Release -G ZIP
- uses: actions/upload-artifact@v3
with:
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,6 @@ jobs:
cmake --build ${{github.workspace}}/build --config Release
cpack --config ${{github.workspace}}/build/CPackConfig.cmake -C Release -G ZIP
- name: Test # don't release unless tests pass
working-directory: ${{github.workspace}}/build
run: ctest -C Release -L anyplatform --output-on-failure

- uses: actions/upload-artifact@v3
with:
name: ubuntu-latest Release binaries
Expand Down Expand Up @@ -134,10 +130,6 @@ jobs:
cmake --build ${{github.workspace}}/build --config Release
cpack --config ${{github.workspace}}/build/CPackConfig.cmake -C Release -G ZIP
- name: Test # don't release unless tests pass
working-directory: ${{github.workspace}}/build
run: ctest -C Release -L anyplatform --output-on-failure

- uses: actions/upload-artifact@v3
with:
name: macos-latest Release binaries
Expand Down

0 comments on commit f48a09c

Please sign in to comment.