Skip to content

Commit

Permalink
Revert js bundle rename in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Reckless-Satoshi committed Oct 22, 2022
1 parent a4a3dbb commit 8633c5a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/client-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/coordinator-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/frontend-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}

0 comments on commit 8633c5a

Please sign in to comment.