From 516c8bf7b6b43a42eeb9cac7d3627103d671ec2a Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sun, 30 May 2021 14:46:13 +0200 Subject: [PATCH] CI: fix artifact-building The generic-build step runs an install to the host system; for artifact- generation, we need it all centralized in a stage/ directory. Do that separately for the KDE neon builds that produce the artifact. --- .github/workflows/nightly-neon.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nightly-neon.yml b/.github/workflows/nightly-neon.yml index 51a2b3fc6..2c964bedf 100644 --- a/.github/workflows/nightly-neon.yml +++ b/.github/workflows/nightly-neon.yml @@ -30,7 +30,9 @@ jobs: uses: calamares/actions/generic-build@v2 - name: "Calamares: archive" working-directory: ${{ env.BUILDDIR }} - run: tar czf calamares.tar.gz stage + run: | + make install DESTDIR=${{ env.BUILDDIR }}/stage + tar czf calamares.tar.gz stage - name: "Calamares: upload" uses: actions/upload-artifact@v2 with: