Add release pipeline + bump workspace version to 0.3.0#50
Merged
Conversation
Adds a release workflow modeled on the spur repo:
- Triggered on `v*` tag push or `workflow_dispatch`
- Builds spur-cloud-api on Ubuntu 22.04 (glibc 2.35 → portable to 22.04+)
- Builds the Vite frontend
- Packages a `spur-cloud-{tag}-linux-amd64.tar.gz` containing the
binary, frontend dist, deploy/docker manifests, deploy/k8s manifests,
README, LICENSE, and an example config
- Smoke-tests `spur-cloud-api --help` on Ubuntu 22.04, 24.04, Debian 12
- Builds and pushes Docker images for the API and frontend to
`ghcr.io/<owner>/spur-cloud-{api,frontend}:<tag>` (and `:latest`)
- Creates a GitHub release with auto-generated notes and the tarball
Bumps workspace version 0.1.0 → 0.3.0 to align with the upcoming
release tag (matches the release naming pattern; spur-cloud was at
v0.1.3 in tagged releases but the workspace version has not been
bumped before).
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two changes prepping for the v0.3.0 release:
.github/workflows/release.yml— new release pipeline modeled on spur's, triggered onv*tag push orworkflow_dispatch.0.1.0 → 0.3.0to match the upcoming release tag.Release pipeline
build-binarytarget/release/spur-cloud-apibuild-frontendfrontend/dist/packagespur-cloud-{tag}-linux-amd64.tar.gz+ sha256verify--helpsmoke testdocker-imagesghcr.io/<owner>/spur-cloud-{api,frontend}:{tag,latest}releaseTarball layout:
ghcr.io publishing uses the auto-provisioned
GITHUB_TOKEN— no extra secrets needed. Both:{tag}and:latestare tagged.Test plan
v0.3.0is pushed.)🤖 Generated with Claude Code