Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 864 Bytes

File metadata and controls

45 lines (29 loc) · 864 Bytes

Release build (GitHub Actions)

This repository uses GitHub Actions to build release artifacts:

  • release.yml builds stacker-cli binaries on release publish.
  • docker.yml builds and pushes trydirect/stacker:<tag> on release publish.

Release via GitHub CLI

1) Ensure you are on main

git checkout main

git pull

2) Create and publish the release

gh release create v0.2.7 --generate-notes

This creates the v0.2.7 tag and publishes the release, which triggers:

  • CLI binary builds (linux + macOS) and uploads to the release.
  • Docker image build and push tagged as trydirect/stacker:v0.2.7.

3) Verify artifacts

gh release view v0.2.7 --json assets --jq '.assets[].name'

4) Check workflows

gh run list -L 10

Optional: Re-run workflows

gh run rerun <run-id>