mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
364 B
YAML
19 lines
364 B
YAML
5 years ago
|
name: Publish docs via GitHub Pages
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- docs*
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: Deploy docs
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout master
|
||
|
uses: actions/checkout@v1
|
||
|
|
||
|
- name: Deploy docs
|
||
|
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|