mirror of
https://github.com/nikita-volkov/hasql.git
synced 2024-11-22 10:05:27 +03:00
31 lines
520 B
YAML
31 lines
520 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- supermajor
|
|
- major
|
|
- minor
|
|
- patch
|
|
|
|
concurrency:
|
|
group: release
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
|
|
format:
|
|
uses: ./.github/workflows/format.yaml
|
|
secrets: inherit
|
|
|
|
check:
|
|
uses: ./.github/workflows/check.yaml
|
|
secrets: inherit
|
|
|
|
release:
|
|
needs:
|
|
- format
|
|
- check
|
|
uses: nikita-volkov/haskell-hackage-lib-github-actions-workflows/.github/workflows/release.yaml@v3
|
|
secrets: inherit
|
|
with:
|
|
prefix-tag-with-v: false
|