Skip to content

Commit 58f6051

Browse files
committed
add mobile app under /mobile/ path
1 parent cc0cac8 commit 58f6051

4 files changed

Lines changed: 44053 additions & 9 deletions

File tree

.github/workflows/deploy-pages.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,27 @@ on:
66
- gh-pages
77
workflow_dispatch:
88

9-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
109
permissions:
1110
contents: read
1211
pages: write
1312
id-token: write
1413

15-
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
16-
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
1714
concurrency:
1815
group: "pages"
1916
cancel-in-progress: false
2017

2118
jobs:
22-
build:
23-
uses: ./.github/workflows/build-and-test.yaml
24-
with:
25-
upload-webui-artifact: true
26-
2719
deploy:
2820
name: "Deploy"
2921
environment:
3022
name: github-pages
3123
url: ${{ steps.deployment.outputs.page_url }}
3224
runs-on: ubuntu-latest
33-
needs: build
3425
steps:
26+
- uses: actions/checkout@v4
27+
- uses: actions/upload-pages-artifact@v3
28+
with:
29+
path: mobile-dist
3530
- name: Deploy to GitHub Pages
3631
id: deployment
3732
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)