Fix artifact path

This commit is contained in:
Reckless_Satoshi 2024-01-11 13:58:57 +00:00
parent a427c5d93a
commit 6f25413c7b
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

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