From dd102142f58f1becb7d6ab89e4d66e2b4544ad6f Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Wed, 11 Nov 2020 21:43:46 +0100 Subject: [PATCH] Specify --gf flag properly. Compress and upload artifact. --- .github/workflows/build.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 417a1f92..da76e6ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,8 +18,13 @@ jobs: - name: Build RGL run: | - bash Setup.sh --dest=dist/ --gf= --verbose + bash Setup.sh --dest=dist/ --gf=gf --verbose - # - uses: actions/upload-artifact@v2 - # with: - # path: dist + - name: Create archive + run: | + tar --create --gzip --verbose --file dist.tar.gz dist/ + + - name: Upload artifact + uses: actions/upload-artifact@v2 + with: + path: dist.tar.gz