Skip to content

Commit

Permalink
Archive debian artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
c8y3 committed Nov 24, 2023
1 parent cda026d commit 2efe2b7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Retrieve version number
id: requestMakefile
working-directory: plugin
run: |
echo "VERSION=$(make help_version)" >> $GITHUB_OUTPUT
- name: Install dependencies
run: sudo apt-get install doxygen graphviz gcovr valgrind sloccount
- name: Configure
Expand All @@ -15,3 +20,9 @@ jobs:
run: make rungcov valgrindu runtestc valgrindc sloccount
- name: Build & package
run: make build doc dev_doc deb
- name: Archive .deb
uses: actions/upload-artifact@v3
with:
name: deb
path: ./results/artifacts/aum_${{ steps.requestMakefile.outputs.VERSION }}.deb
if-no-files-found: error

0 comments on commit 2efe2b7

Please sign in to comment.