1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/www/content/actions.md
Carlos Alexandro Becker b83fdd82ac
feat: github actions support (#939)
* feat: github actions support

* docs: actions doc
2019-01-24 16:10:14 -02:00

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.