Don't bother tar/gz, as it's adding an extra, unnecessary step
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m20s

This commit is contained in:
2023-12-20 13:59:50 -05:00
parent 33a1bc24f6
commit 295f1f7449

View File

@@ -27,10 +27,11 @@ jobs:
- name: Get Version Number - name: Get Version Number
id: get_version id: get_version
run: echo "::set-output name=VERSION::$(node -p "require('./package.json').version")" run: echo "::set-output name=VERSION::$(node -p "require('./package.json').version")"
- name: Create Tarball of Build # - name: Create Tarball of Build
run: tar -czvf build-${{ steps.get_version.outputs.VERSION }}.tar.gz dist/pwa # run: tar -czvf build-${{ steps.get_version.outputs.VERSION }}.tar.gz dist/pwa
- name: Upload Tarball - name: Upload Tarball
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: build-artifact-${{ steps.get_version.outputs.VERSION }}.${{ gitea.run_number }} name: build-artifact-${{ steps.get_version.outputs.VERSION }}.${{ gitea.run_number }}
path: build-${{ steps.get_version.outputs.VERSION }}.tar.gz # path: build-${{ steps.get_version.outputs.VERSION }}.tar.gz
path: dist/pwa/