Skip to content

Commit

Permalink
Package and publish on different jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Cruz Viotti <[email protected]>
  • Loading branch information
jviotti committed Jun 3, 2024
1 parent 0806947 commit f3f2ec9
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,17 @@ jobs:

- run: cpack --config build/CPackConfig.cmake -B build/out -C Release

# TODO: Do this from another job in the workflow so we can collect from multiple platforms
- uses: actions/upload-artifact@v4
with:
name: artifacts
path: build/out/*.zip
retention-days: 1

publish:
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4

# TODO: Create a proper release if there is a tag instead
- run: gh config set prompt disabled
env:
Expand Down

0 comments on commit f3f2ec9

Please sign in to comment.