hasql/.github/workflows/on-push-to-release.yaml

31 lines
520 B
YAML
Raw Normal View History

2023-10-13 01:59:59 +03:00
on:
push:
branches:
- supermajor
- major
- minor
- patch
concurrency:
group: release
cancel-in-progress: false
jobs:
2023-10-14 14:55:02 +03:00
format:
2024-04-28 15:42:06 +03:00
uses: ./.github/workflows/format.yaml
2023-10-14 14:55:02 +03:00
secrets: inherit
2023-10-16 15:39:46 +03:00
check:
2023-10-16 15:47:35 +03:00
uses: ./.github/workflows/check.yaml
2023-10-14 14:55:02 +03:00
secrets: inherit
2023-10-13 01:59:59 +03:00
release:
2023-10-14 14:55:02 +03:00
needs:
- format
2023-10-16 15:39:46 +03:00
- check
2024-04-20 13:22:26 +03:00
uses: nikita-volkov/haskell-hackage-lib-github-actions-workflows/.github/workflows/release.yaml@v3
2023-10-13 01:59:59 +03:00
secrets: inherit
with:
prefix-tag-with-v: false