1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/.github/workflows/generate.yml

33 lines
948 B
YAML
Raw Normal View History

2021-11-03 02:21:46 +02:00
name: generate
on:
push:
branches:
2021-11-12 22:23:32 +02:00
- 'main'
2021-11-03 02:21:46 +02:00
paths:
- '.github/workflows/generate.yml'
- pkg/config/config.go
2021-11-03 02:21:46 +02:00
- CONTRIBUTING.md
- USERS.md
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b0e28b5ac45a892f91e7d036f8200cf5ed489415 # v3
2021-11-03 02:31:53 +02:00
with:
token: ${{ secrets.GH_PAT }}
- uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492 # v2
2021-11-03 02:21:46 +02:00
with:
go-version: 1.17
- uses: arduino/setup-task@accf38bba955639d21816bb68775e5c48c482182 # v1
2021-11-03 02:21:46 +02:00
- run: task docs:generate
- run: task schema:generate
- uses: stefanzweifel/git-auto-commit-action@5804e42f86b1891093b151b6c4e78e759c746c4d # v4
2021-11-03 02:21:46 +02:00
with:
commit_message: "docs: update"
2021-11-12 22:23:32 +02:00
branch: main
commit_user_name: actions-user
commit_user_email: actions@github.com
commit_author: actions-user <actions@github.com>