| 123456789101112131415161718192021222324252627282930 |
- name: Deploy Docs
- on:
- push:
- branches:
- - main
- jobs:
- deploy:
- runs-on: ubuntu-18.04
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - name: Setup Go
- uses: actions/setup-go@v2
- with:
- go-version: ${{ env.GO_VERSION }}
- - name: Build Docs
- run: make docs
- - name: Deploy
- uses: peaceiris/actions-gh-pages@v3.8.0
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./site
- cname: external-secrets.io
- keep_files: true
|