Skip to content

Commit

Permalink
add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mchilli committed Oct 9, 2023
1 parent d4dffcf commit 16ac3b8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/update-github-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Update GitHub Pages

on:
push:
branches:
- main
paths:
- 'webui/**'

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./webui

0 comments on commit 16ac3b8

Please sign in to comment.