Merge pull request #1460 from RoboSats/fix-self-hosted-client-image
Some checks failed
Sync lnproxy relays / sync (push) Has been cancelled

Fix self-hosted client image
This commit is contained in:
KoalaSat 2024-09-12 10:53:44 +00:00 committed by GitHub
commit e91fff8df1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 18 deletions

View File

@ -57,13 +57,6 @@ jobs:
path: | path: |
frontend/static/frontend/*main.js frontend/static/frontend/*main.js
frontend/static/frontend/*.wasm frontend/static/frontend/*.wasm
- name: 'Archive Web Basic Selfhosted Build Results'
uses: actions/upload-artifact@v4
with:
name: web-basic-selfhosted-js
path: |
frontend/static/frontend/*basic.selfhosted.js
frontend/static/frontend/*.wasm
- name: 'Archive Web PRO Build Results' - name: 'Archive Web PRO Build Results'
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
@ -71,13 +64,6 @@ jobs:
path: | path: |
frontend/static/frontend/*pro.js frontend/static/frontend/*pro.js
frontend/static/frontend/*.wasm frontend/static/frontend/*.wasm
- name: 'Archive Web PRO SelhostedBuild Results'
uses: actions/upload-artifact@v4
with:
name: web-pro-selfhosted-js
path: |
frontend/static/frontend/*pro.selfhosted.js
frontend/static/frontend/*.wasm
- name: 'Archive Mobile Build Results' - name: 'Archive Mobile Build Results'
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:

View File

@ -30,14 +30,14 @@ jobs:
with: with:
workflow: frontend-build.yml workflow: frontend-build.yml
workflow_conclusion: success workflow_conclusion: success
name: web-basic-selfhosted-js name: web-main-js
path: nodeapp/static/frontend/ path: nodeapp/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-main-js
path: nodeapp/static/frontend/ path: nodeapp/static/frontend/
- name: 'Download pro.selfhosted.js Artifact' - name: 'Download pro.selfhosted.js Artifact'
@ -46,14 +46,14 @@ jobs:
with: with:
workflow: frontend-build.yml workflow: frontend-build.yml
workflow_conclusion: success workflow_conclusion: success
name: web-pro-selfhosted-js name: web-pro-js
path: nodeapp/static/frontend/ path: nodeapp/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-js
path: nodeapp/static/frontend/ path: nodeapp/static/frontend/
- name: 'Log in to Docker Hub' - name: 'Log in to Docker Hub'