Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikuhn committed Feb 19, 2024
2 parents 2311703 + 104197f commit 736975b
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,15 @@ jobs:
run: python -m build
- name: Copy package to 'webgui'
run: |
mkdir webgui/dist
cp dist/*.whl webgui/dist/
cp dist/*.whl webgui/public/
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.0
- name: Build web UI
run: |
npm install
npm run build-main-github
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3
with:
Expand All @@ -70,8 +76,8 @@ jobs:
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload entire repository
path: 'webgui'
# Upload webgui dist
path: 'webgui/dist/'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 736975b

Please sign in to comment.