From 2d102d2549caee49d390a4262971ee840c82ccb4 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Wed, 11 Nov 2020 22:08:15 +0100 Subject: [PATCH] Don't archive files first, give a name to artifact --- .github/workflows/build.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 616911cb5..53c66078e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,11 +22,9 @@ jobs: mkdir -p ${DEST} bash Setup.sh --dest=${DEST} --gf=gf --verbose - - name: Create archive - run: | - tar --create --gzip --verbose --file dist.tar.gz ${DEST} - - name: Upload artifact uses: actions/upload-artifact@v2 with: - path: dist.tar.gz + name: gf-rgl-${{ env.GITHUB_SHA }} + path: ${{ env.DEST }} + if-no-files-found: error