mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
b83fdd82ac
* feat: github actions support * docs: actions doc
608 B
608 B
title | menu | weight |
---|---|---|
GitHub Actions | true | 141 |
GoReleaser can also be used within GitHub Actions.
You can create a workflow like this to push your releases.
workflow "Release" {
on = "push"
resolves = ["goreleaser"]
}
action "goreleaser" {
uses = "docker://goreleaser/goreleaser"
secrets = ["GITHUB_TOKEN"]
args = "release"
}
This should support everything already supported by our Docker image. Check the install section for more details.