Skip to content

Commit

Permalink
github/workflows: add artifact uploading step
Browse files Browse the repository at this point in the history
Upload build artifacts generated by the build process.
Let's start simple and upload the lone executable.
  • Loading branch information
matheusmoreira committed Sep 21, 2024
1 parent bf4e88b commit b97c0e5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/lone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,14 @@ jobs:
- name: Test lone
run: make test

- name: Upload lone executable artifact
uses: actions/upload-artifact@v4
with:
name: lone
path: build/*/lone
compression-level: 9
overwrite: false

analyze:
name: CodeQL analysis
runs-on: ubuntu-latest
Expand Down

0 comments on commit b97c0e5

Please sign in to comment.