diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a3160fd..ace9326 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=${{ env.GITHUB_WORKSPACE }}/build + sudo apt install ${{ env.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 + ${{ env.GITHUB_WORKSPACE }}/build/qtcreator-opensource-linux-*-*.deb + ${{ env.GITHUB_WORKSPACE }}/build/ROSProjectManager-*-*-*.deb + ${{ env.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