From 6f25413c7bc661b25b4f1c4a910052bfd1f364bc Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Thu, 11 Jan 2024 13:58:57 +0000 Subject: [PATCH] Fix artifact path --- .github/workflows/web-client-image.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/web-client-image.yml b/.github/workflows/web-client-image.yml index 1ac04d0b..622c0ea0 100644 --- a/.github/workflows/web-client-image.yml +++ b/.github/workflows/web-client-image.yml @@ -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