Fix main.js path on coordinator image

This commit is contained in:
Reckless_Satoshi 2023-05-25 05:09:18 -07:00
parent 067ba38668
commit 07fbd831ee
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

@ -22,14 +22,14 @@ jobs:
workflow: frontend-build.yml
workflow_conclusion: success
name: web-main-js
path: nodeapp/static/frontend/
path: frontend/static/frontend/
- 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-main-js
path: nodeapp/static/frontend/
path: frontend/static/frontend/
- name: 'Download pro.js Artifact'
if: inputs.semver == '' # Only if workflow fired from frontend-build.yml
@ -38,14 +38,14 @@ jobs:
workflow: frontend-build.yml
workflow_conclusion: success
name: web-pro-js
path: nodeapp/static/frontend/
path: frontend/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@v3
with:
name: web-pro-js
path: nodeapp/static/frontend/
path: frontend/static/frontend/
- name: 'Log in to Docker Hub'
uses: docker/login-action@v2