diff --git a/.github/workflows/client-image.yml b/.github/workflows/client-image.yml index c0c815c22..f5ecb9298 100644 --- a/.github/workflows/client-image.yml +++ b/.github/workflows/client-image.yml @@ -26,20 +26,20 @@ jobs: rm nodeapp/static cp -r frontend/static nodeapp/static - - name: 'Download basic.js Artifact' + - name: 'Download main.js Artifact' if: inputs.semver == '' # Only if workflow fired from frontend-build.yml uses: dawidd6/action-download-artifact@v2 with: workflow: frontend-build.yml workflow_conclusion: success - name: web-basic-js + name: web-main-js path: nodeapp/static/frontend/ - - name: 'Download basic.js Artifact for a release' + - name: 'Download main.js Artifact for a release' if: inputs.semver != '' # Only if fired as job in release.yml uses: actions/download-artifact@v3 with: - name: web-basic-js + name: web-main-js path: nodeapp/static/frontend/ - name: 'Download pro.js Artifact' diff --git a/.github/workflows/coordinator-image.yml b/.github/workflows/coordinator-image.yml index 5a6cb6d85..9d198028a 100644 --- a/.github/workflows/coordinator-image.yml +++ b/.github/workflows/coordinator-image.yml @@ -15,20 +15,20 @@ jobs: steps: - uses: actions/checkout@v3 - - name: 'Download basic.js Artifact' + - name: 'Download Basic main.js Artifact' if: inputs.semver == '' # Only if workflow fired from frontend-build.yml uses: dawidd6/action-download-artifact@v2 with: workflow: frontend-build.yml workflow_conclusion: success - name: web-basic-js + name: web-main-js path: nodeapp/static/frontend/ - - name: 'Download basic.js Artifact for a release' + - name: 'Download Basic main.js Artifact for a release' if: inputs.semver != '' # Only if fired as job in release.yml uses: actions/download-artifact@v3 with: - name: web-basic-js + name: web-main-js path: nodeapp/static/frontend/ - name: 'Download pro.js Artifact' diff --git a/.github/workflows/frontend-build.yml b/.github/workflows/frontend-build.yml index 404f61f68..755b65221 100644 --- a/.github/workflows/frontend-build.yml +++ b/.github/workflows/frontend-build.yml @@ -51,8 +51,8 @@ jobs: - name: 'Archive Web Basic Build Results' uses: actions/upload-artifact@v3 with: - name: web-basic-js - path: frontend/static/frontend/basic.js + name: web-main-js + path: frontend/static/frontend/main.js - name: 'Archive Web PRO Build Results' uses: actions/upload-artifact@v3 with: @@ -70,11 +70,11 @@ jobs: if: inputs.semver == '' uses: benc-uk/workflow-dispatch@v1 with: - workflow: 'Coodinator Image CI' + workflow: 'Docker: Coordinator' token: ${{ secrets.PERSONAL_TOKEN }} - name: 'Invoke Client App Build CI/CD workflow' if: inputs.semver == '' uses: benc-uk/workflow-dispatch@v1 with: - workflow: 'Client App Image CI/CD' + workflow: 'Docker: Client' token: ${{ secrets.PERSONAL_TOKEN }} \ No newline at end of file