From 64c6611ea5583cc36e495722daa887ca6e19ed36 Mon Sep 17 00:00:00 2001 From: ebbit1q Date: Mon, 18 Apr 2022 04:11:55 +0200 Subject: [PATCH] env vars don't go into docker containers like that (#4609) reverts a bit of #4580 92ed53e13ad937b588202a21f92e7f050d855e95 --- .github/workflows/desktop-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index b1b789d3..dc8c1d20 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -160,11 +160,11 @@ jobs: if: matrix.package != 'skip' shell: bash env: - PACKAGE_SUFFIX: '-${{matrix.distro}}' - CPACK_GENERATOR: '${{matrix.package}}' + suffix: '-${{matrix.distro}}' + type: '${{matrix.package}}' run: | source .ci/docker.sh - RUN --server --release --package + RUN --server --release --package "$type" --suffix "$suffix" - name: Upload artifact if: matrix.package != 'skip'