feat(release): publish the snap package with goreleaser - #2989
Open
vmaerten wants to merge 1 commit into
Open
Conversation
vmaerten
force-pushed
the
feat/snapcraft-goreleaser
branch
from
August 19, 2026 11:08
19b2e2d to
53f2f89
Compare
vmaerten
force-pushed
the
feat/snapcraft-goreleaser
branch
from
August 19, 2026 15:37
53f2f89 to
783d7c3
Compare
vmaerten
force-pushed
the
feat/snapcraft-goreleaser
branch
from
August 19, 2026 15:45
783d7c3 to
66de046
Compare
vmaerten
marked this pull request as ready for review
August 20, 2026 09:20
vmaerten
requested review from
andreynering and
pd93
and
a lite review from Copilot
August 20, 2026 09:29
There was a problem hiding this comment.
Pull request overview
This PR completes the automated release pipeline by adding Snapcraft publishing via GoReleaser, removing the previously documented/manual snap release steps, and wiring required CI credentials.
Changes:
- Add Snapcraft publishing configuration to
.goreleaser.ymland provide store credentials to the release workflow. - Install
snapcraftin the GitHub Actions release workflow so GoReleaser can build/publish snaps. - Update release documentation and local release task messaging to remove manual Snapcraft steps.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| website/src/next/docs/releasing.md | Updates release docs to include Snapcraft as fully automated and removes manual Snapcraft instructions/links. |
| Taskfile.yml | Removes the post-release manual reminder to update the separate snapcraft manifest repo. |
| .goreleaser.yml | Adds snapcrafts configuration for publishing the task snap via GoReleaser. |
| .github/workflows/release.yml | Installs Snapcraft on the runner and passes SNAPCRAFT_STORE_CREDENTIALS to GoReleaser. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| description: | | ||
| Task is a simple tool that allows you to easily run development and build | ||
| tasks. Task is written in Golang, but can be used to develop any language. | ||
| It aims to be simpler and easier to use then GNU Make. |
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.
Description
The last step to a fully automated release process: Snapcraft.
This PR uses goreleaser to release snap instead of rely on our custom repo and manual action.
Checklist