Skip to content

Commit

Permalink
Add workflow for github page #118
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludee committed Jun 12, 2023
1 parent d713bd2 commit 5b1c78e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: gh-pages
on:
push:
branches:
- feature-120-repo
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install --upgrade -r requirements.txt
- run: mkdocs gh-deploy --force

0 comments on commit 5b1c78e

Please sign in to comment.