hapistrano/.github/workflows
Sebastian Estrella 34a41a968e Run docker job
2024-07-05 16:48:15 -05:00
..
build.yml Run docker job 2024-07-05 16:48:15 -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 Update setup-buildx-action from v2 to v3 2024-06-20 17:10:28 -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