-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (56 loc) · 1.66 KB
/
doc2go.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Publish Go Docs
on:
# Publish documentation when a new release is tagged.
push:
tags: [ 'v*' ]
# Allow manually publishing documentation from a specific hash.
workflow_dispatch:
inputs:
head:
description: "Git commit to publish documentation for."
required: true
type: string
# If two concurrent runs are started, prefer the latest one.
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
name: Build godoc website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Check out head specified by workflow_dispatch,
# or the tag if this fired from the push event.
ref: ${{ inputs.head || github.ref }}
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: stable
cache: true
- name: Install doc2go
run: go install go.abhg.dev/doc2go@latest
- name: Generate API reference
run: doc2go -home github.com/${{ github.repository }} ./...
- name: Upload pages
uses: actions/upload-pages-artifact@v1
publish:
name: Publish godoc website
# Don't run until the build has finished running.
needs: build
# Grants the GITHUB_TOKEN used by this job permissions needed to publish
# the doc website.
permissions:
pages: write
id-token: write
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1