hapistrano/.github/workflows
Cristhian Motoche 49e66cde51
chore: Update CI (#211)
* fix: Typo on cabal packages

* force run

* fix: Follow suggestion

* chore: Get status from master branch

* chore: Remove cabal packages from cache
2023-02-11 17:21:57 -05:00
..
build.yml chore: Update CI (#211) 2023-02-11 17:21:57 -05:00
draft.yml Refactoring CI workflows (#199) 2022-06-09 11:23:16 -05:00
README.md Refactoring CI workflows (#199) 2022-06-09 11:23:16 -05:00
release.yml Tag external workflow (#202) 2022-07-01 10:49:06 -05:00
reusable-docker.yml Fix smoke test (#200) 2022-06-09 16:15:36 -05:00

CI Workflows

Overview

  • Build
    • Build and test Haskell code
    • Build Docker image
  • Draft
    • Create a GH draft release with a static binary
  • Release
    • Upload the Docker image ghcr.io
    • Upload the package and docs to Hackage

Events

graph LR
    event[GH Event]-->|on push|Build
    event-->|tag created|Draft
    Draft-->|create draft release|End
    event-->|release published|Release
    Release-->|upload artifacts to Hackage/GHCR|End
    Build-->End