ci: secrets.GITHUB_TOKEN not exist on self-hosted runner (#3765) #1692
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**' | |
- 'config/**' | |
- '**.md' | |
- '.dockerignore' | |
- 'docker/**' | |
- '.gitignore' | |
name: Build API docs | |
env: | |
RUST_TOOLCHAIN: nightly-2024-04-18 | |
jobs: | |
apidoc: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ env.RUST_TOOLCHAIN }} | |
- run: cargo doc --workspace --no-deps --document-private-items | |
- run: | | |
cat <<EOF > target/doc/index.html | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="refresh" content="0; url='greptime/'" /> | |
</head> | |
<body></body></html> | |
EOF | |
- name: Publish dist directory | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: target/doc | |
single-commit: true |