1
0
Fork 0
golang-github-nicholas-fedo.../.github/workflows/release-production.yaml
Daniel Baumann bc0f764250
Merging upstream version 0.8.13.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-29 07:18:02 +02:00

32 lines
503 B
YAML

name: Release (Production)
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch: {}
permissions:
contents: write
packages: write
attestations: write
id-token: write
jobs:
lint:
uses: ./.github/workflows/lint.yaml
test:
uses: ./.github/workflows/test.yaml
build:
uses: ./.github/workflows/build.yaml
secrets: inherit
needs:
- lint
- test
update-go-docs:
uses: ./.github/workflows/update-go-docs.yaml
needs:
- build