mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 11:26:24 +00:00
Fix self-hosted client image
This commit is contained in:
parent
bc2aaaac74
commit
4b976b32b9
11
.github/workflows/selfhosted-client-image.yml
vendored
11
.github/workflows/selfhosted-client-image.yml
vendored
@ -21,9 +21,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: 'Copy Static' # Needed since Github actions does not support symlinks
|
|
||||||
run: cp -r frontend/static nodeapp/static
|
|
||||||
|
|
||||||
- name: 'Download basic.selfhosted.js Artifact'
|
- name: 'Download basic.selfhosted.js Artifact'
|
||||||
if: inputs.semver == '' # Only if workflow fired from frontend-build.yml
|
if: inputs.semver == '' # Only if workflow fired from frontend-build.yml
|
||||||
uses: dawidd6/action-download-artifact@v6
|
uses: dawidd6/action-download-artifact@v6
|
||||||
@ -31,14 +28,14 @@ jobs:
|
|||||||
workflow: frontend-build.yml
|
workflow: frontend-build.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
name: web-basic-selfhosted-js
|
name: web-basic-selfhosted-js
|
||||||
path: nodeapp/static/frontend/
|
path: frontend/static/frontend/
|
||||||
|
|
||||||
- name: 'Download main.js Artifact for a release'
|
- name: 'Download main.js Artifact for a release'
|
||||||
if: inputs.semver != '' # Only if fired as job in release.yml
|
if: inputs.semver != '' # Only if fired as job in release.yml
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: web-basic-selfhosted-js
|
name: web-basic-selfhosted-js
|
||||||
path: nodeapp/static/frontend/
|
path: frontend/static/frontend/
|
||||||
|
|
||||||
- name: 'Download pro.selfhosted.js Artifact'
|
- name: 'Download pro.selfhosted.js Artifact'
|
||||||
if: inputs.semver == '' # Only if workflow fired from frontend-build.yml
|
if: inputs.semver == '' # Only if workflow fired from frontend-build.yml
|
||||||
@ -47,14 +44,14 @@ jobs:
|
|||||||
workflow: frontend-build.yml
|
workflow: frontend-build.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
name: web-pro-selfhosted-js
|
name: web-pro-selfhosted-js
|
||||||
path: nodeapp/static/frontend/
|
path: frontend/static/frontend/
|
||||||
|
|
||||||
- name: 'Download pro.js Artifact for a release'
|
- name: 'Download pro.js Artifact for a release'
|
||||||
if: inputs.semver != '' # Only if fired as job in release.yml
|
if: inputs.semver != '' # Only if fired as job in release.yml
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: web-pro-selfhosted-js
|
name: web-pro-selfhosted-js
|
||||||
path: nodeapp/static/frontend/
|
path: frontend/static/frontend/
|
||||||
|
|
||||||
- name: 'Log in to Docker Hub'
|
- name: 'Log in to Docker Hub'
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
|
8
.github/workflows/web-client-image.yml
vendored
8
.github/workflows/web-client-image.yml
vendored
@ -31,14 +31,14 @@ jobs:
|
|||||||
workflow: frontend-build.yml
|
workflow: frontend-build.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
name: web-main-js
|
name: web-main-js
|
||||||
path: frontend/static/frontend/
|
path: web/static/frontend/
|
||||||
|
|
||||||
- name: 'Download main.js Artifact for a release'
|
- name: 'Download main.js Artifact for a release'
|
||||||
if: inputs.semver != '' # Only if fired as job in release.yml
|
if: inputs.semver != '' # Only if fired as job in release.yml
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: web-main-js
|
name: web-main-js
|
||||||
path: frontend/static/frontend/
|
path: web/static/frontend/
|
||||||
|
|
||||||
- name: 'Download pro.js Artifact'
|
- name: 'Download pro.js Artifact'
|
||||||
if: inputs.semver == '' # Only if workflow fired from frontend-build.yml
|
if: inputs.semver == '' # Only if workflow fired from frontend-build.yml
|
||||||
@ -47,14 +47,14 @@ jobs:
|
|||||||
workflow: frontend-build.yml
|
workflow: frontend-build.yml
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
name: web-pro-js
|
name: web-pro-js
|
||||||
path: frontend/static/frontend/
|
path: web/static/frontend/
|
||||||
|
|
||||||
- name: 'Download pro.js Artifact for a release'
|
- name: 'Download pro.js Artifact for a release'
|
||||||
if: inputs.semver != '' # Only if fired as job in release.yml
|
if: inputs.semver != '' # Only if fired as job in release.yml
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: web-pro-js
|
name: web-pro-js
|
||||||
path: frontend/static/frontend/
|
path: web/static/frontend/
|
||||||
|
|
||||||
- name: 'Log in to Docker Hub'
|
- name: 'Log in to Docker Hub'
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
|
Loading…
Reference in New Issue
Block a user