diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 417a1f92e..da76e6cef 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