hasql/.github/workflows/on-push-to-release.yaml
Nikita Volkov 0d7c2aeedf Update CI
2023-10-16 03:32:11 +03:00

33 lines
625 B
YAML

name: Release the lib to Hackage
on:
push:
branches:
- supermajor
- major
- minor
- patch
concurrency:
group: release
cancel-in-progress: false
jobs:
format:
uses: nikita-volkov/haskell-hackage-lib-github-actions-workflows/.github/workflows/format.yaml@v1
secrets: inherit
verify:
uses: ./.github/workflows/build-and-test.yaml
secrets: inherit
release:
needs:
- format
- verify
uses: nikita-volkov/haskell-hackage-lib-github-actions-workflows/.github/workflows/release.yaml@v1
secrets: inherit
with:
prefix-tag-with-v: false