From d293b7d6bcdf8d0b2a8ec9df8ae4a67f3caed8df Mon Sep 17 00:00:00 2001 From: Christian Rauch Date: Mon, 23 Dec 2024 15:20:50 +0100 Subject: [PATCH] upload Qt Creator Debian package as release artifact --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a3160fd..5b6583e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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' @@ -82,6 +82,7 @@ jobs: name: plugin_archive_artifact_${{ matrix.config.name }}_deb if-no-files-found: error path: | + ./build/qtcreator-opensource-linux-*-*.deb ./build/ROSProjectManager-*-*-*.deb ./build/ROSProjectManager-*-*-*-dbgsym.ddeb @@ -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