From edaabeeb623032f6bb9be97221ea9e17e9d04398 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 | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a3160fd..cd08182 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,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 @@ -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