Skip to content

Commit

Permalink
ci: Add a Deploy Action (#29)
Browse files Browse the repository at this point in the history
Signed-off-by: Olly Pomeroy <[email protected]>
  • Loading branch information
ollypom authored Oct 23, 2023
1 parent 01a5c7b commit 3de1a3d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish docs via GitHub Pages

on:
push:
branches:
- main

jobs:
deploy:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2

- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CUSTOM_DOMAIN: runfinch.com

0 comments on commit 3de1a3d

Please sign in to comment.