Skip to content

Commit

Permalink
generate DEB package in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Sep 15, 2024
1 parent a9249f8 commit 0a6cc85
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,26 @@ jobs:
path: |
./build/ROSProjectManager-*-*-*.zip
- name: install Qt Creator DEB package
if: runner.os == 'Linux'
run: |
./packaging/qtcreator_deb_install.sh
- name: generate plugin DEB package
if: runner.os == 'Linux'
run: |
cd build
cpack -G DEB
- name: upload artifact (DEB)
if: runner.os == 'Linux'
uses: actions/upload-artifact@v4
with:
name: plugin_archive_artifact_${{ matrix.config.name }}
if-no-files-found: error
path: |
./build/ROSProjectManager-*-*-*.{deb,ddeb}
release:
name: create release
if: contains(github.ref, '/tags/')
Expand Down

0 comments on commit 0a6cc85

Please sign in to comment.