mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-20 20:29:02 +00:00
Revert js bundle rename in workflows
This commit is contained in:
parent
a4a3dbb95e
commit
8633c5abb9
8
.github/workflows/client-image.yml
vendored
8
.github/workflows/client-image.yml
vendored
@ -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'
|
||||
|
8
.github/workflows/coordinator-image.yml
vendored
8
.github/workflows/coordinator-image.yml
vendored
@ -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'
|
||||
|
8
.github/workflows/frontend-build.yml
vendored
8
.github/workflows/frontend-build.yml
vendored
@ -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 }}
|
Loading…
Reference in New Issue
Block a user