Skip to content

Commit

Permalink
upload Qt Creator Debian package as release artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Dec 23, 2024
1 parent 515157e commit edaabee
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ jobs:
- name: install Qt Creator DEB package
if: runner.os == 'Linux'
run: |
wget $(./packaging/format-deb-url.py) --directory-prefix=/tmp
sudo apt install /tmp/qtcreator-opensource-linux-*-*.deb
wget $(./packaging/format-deb-url.py) --directory-prefix=${GITHUB_WORKSPACE}/build
sudo apt install ${GITHUB_WORKSPACE}/build/qtcreator-opensource-linux-*-*.deb
- name: generate plugin DEB package
if: runner.os == 'Linux'
Expand All @@ -82,8 +82,9 @@ jobs:
name: plugin_archive_artifact_${{ matrix.config.name }}_deb
if-no-files-found: error
path: |
./build/ROSProjectManager-*-*-*.deb
./build/ROSProjectManager-*-*-*-dbgsym.ddeb
${GITHUB_WORKSPACE}/build/qtcreator-opensource-linux-*-*.deb
${GITHUB_WORKSPACE}/build/ROSProjectManager-*-*-*.deb
${GITHUB_WORKSPACE}/build/ROSProjectManager-*-*-*-dbgsym.ddeb
release:
name: create release
Expand All @@ -102,4 +103,4 @@ jobs:
uses: ncipollo/release-action@v1
id: create_release
with:
artifacts: ROSProjectManager-*-*-*.zip,ROSProjectManager-*-*-*.deb,ROSProjectManager-*-*-*-dbgsym.ddeb
artifacts: qtcreator-opensource-linux-*-*.deb,ROSProjectManager-*-*-*.zip,ROSProjectManager-*-*-*.deb,ROSProjectManager-*-*-*-dbgsym.ddeb

0 comments on commit edaabee

Please sign in to comment.