diff --git a/.github/workflows/frontend-build.yml b/.github/workflows/frontend-build.yml index 348a41537..d83121804 100644 --- a/.github/workflows/frontend-build.yml +++ b/.github/workflows/frontend-build.yml @@ -57,13 +57,6 @@ jobs: path: | frontend/static/frontend/*main.js frontend/static/frontend/*.wasm - - name: 'Archive Web Basic Selfhosted Build Results' - uses: actions/upload-artifact@v4 - with: - name: web-basic-selfhosted-js - path: | - frontend/static/frontend/*basic.selfhosted.js - frontend/static/frontend/*.wasm - name: 'Archive Web PRO Build Results' uses: actions/upload-artifact@v4 with: @@ -71,13 +64,6 @@ jobs: path: | frontend/static/frontend/*pro.js frontend/static/frontend/*.wasm - - name: 'Archive Web PRO SelhostedBuild Results' - uses: actions/upload-artifact@v4 - with: - name: web-pro-selfhosted-js - path: | - frontend/static/frontend/*pro.selfhosted.js - frontend/static/frontend/*.wasm - name: 'Archive Mobile Build Results' uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/selfhosted-client-image.yml b/.github/workflows/selfhosted-client-image.yml index 2640903ad..5b18c07fc 100644 --- a/.github/workflows/selfhosted-client-image.yml +++ b/.github/workflows/selfhosted-client-image.yml @@ -30,14 +30,14 @@ jobs: with: workflow: frontend-build.yml workflow_conclusion: success - name: web-basic-selfhosted-js + name: web-main-js path: nodeapp/static/frontend/ - name: 'Download main.js Artifact for a release' if: inputs.semver != '' # Only if fired as job in release.yml uses: actions/download-artifact@v4 with: - name: web-basic-selfhosted-js + name: web-main-js path: nodeapp/static/frontend/ - name: 'Download pro.selfhosted.js Artifact' @@ -46,14 +46,14 @@ jobs: with: workflow: frontend-build.yml workflow_conclusion: success - name: web-pro-selfhosted-js + name: web-pro-js path: nodeapp/static/frontend/ - name: 'Download pro.js Artifact for a release' if: inputs.semver != '' # Only if fired as job in release.yml uses: actions/download-artifact@v4 with: - name: web-pro-selfhosted-js + name: web-pro-js path: nodeapp/static/frontend/ - name: 'Log in to Docker Hub'