mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
403 B
18 lines
403 B
name: Publish docs via GitHub Pages |
|
on: |
|
push: |
|
branches: |
|
- main |
|
jobs: |
|
build: |
|
name: Deploy docs |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Checkout master |
|
uses: actions/checkout@v3 |
|
|
|
- name: Deploy docs |
|
uses: mhausenblas/mkdocs-deploy-gh-pages@master |
|
env: |
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
|
CUSTOM_DOMAIN: ersatztv.org
|
|
|