Skip to content

Commit 90c760c

Browse files
committed
add mobile app under /mobile/ path
1 parent cc0cac8 commit 90c760c

4 files changed

Lines changed: 44063 additions & 0 deletions

File tree

.github/workflows/deploy-pages.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,20 @@ jobs:
3232
runs-on: ubuntu-latest
3333
needs: build
3434
steps:
35+
- uses: actions/checkout@v4
36+
- name: Download webui artifact
37+
uses: actions/download-artifact@v4
38+
with:
39+
name: github-pages
40+
path: _site_archive
41+
- name: Prepare deploy directory
42+
run: |
43+
mkdir -p _site
44+
tar -xf _site_archive/artifact.tar -C _site
45+
cp -r mobile-dist _site/mobile
46+
- uses: actions/upload-pages-artifact@v3
47+
with:
48+
path: _site
3549
- name: Deploy to GitHub Pages
3650
id: deployment
3751
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)