| 123456789101112131415161718192021222324 |
- name: Deploy Docs
- on:
- push:
- branches:
- - main
- jobs:
- deploy:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup Go
- uses: actions/setup-go@v3
- with:
- go-version-file: "go.mod"
- - name: Build Docs
- run: make docs.publish
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|