mirror of
https://github.com/nikita-volkov/hasql.git
synced 2024-11-23 02:35:33 +03:00
33 lines
625 B
YAML
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
|