Skip to content

Commit

Permalink
deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-lox committed Jan 20, 2025
1 parent ba4010e commit 444c777
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: deploy docs to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
#release:
# types: [ published ]

jobs:
publish:
name: Publish to gh-pages branch

runs-on: ubuntu-latest

permissions:
contents: write

steps:
- uses: actions/checkout@v2

- uses: retypeapp/action-build@latest

- uses: retypeapp/action-github-pages@latest
with:
update-branch: true
branch: gh-pages

0 comments on commit 444c777

Please sign in to comment.