1
0
Fork 0
golang-github-nicholas-fedo.../.github/workflows/release-dev.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

34 lines
529 B
YAML

name: Push to main
on:
workflow_dispatch: {}
push:
branches:
- main
tags-ignore:
- "v*"
paths-ignore:
- "docs/*"
- ".github/*"
permissions:
contents: write
actions: read
packages: write
id-token: write
attestations: write
jobs:
lint:
uses: ./.github/workflows/lint.yaml
test:
uses: ./.github/workflows/test.yaml
build-and-publish:
uses: ./.github/workflows/build.yaml
secrets: inherit
needs:
- lint
- test
with:
snapshot: true