Skip to content

feat: use repo search to select repositories (#397) #515

feat: use repo search to select repositories (#397)

feat: use repo search to select repositories (#397) #515

Workflow file for this run

on:
push:
branches:
- master
name: Generate docs
jobs:
build:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
id: go
- name: Generate docs
run: go run ./tools/docs/main.go
- name: Commit changes
continue-on-error: true
run: |
git config user.email "[email protected]"
git config user.name "Automated docs generator"
git checkout .
git checkout docs --
mv tmp-docs/* ./
git add *
git commit -m "Updated docs"
- name: Push changes
if: ${{ success() }}
run: |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
git push