goreleaser / goreleaser-action

GitHub Action for GoReleaser
https://github.com/marketplace/actions/goreleaser-action
MIT License
833 stars 73 forks source link

How can I use goreleaser from master? #453

Closed bartekpacia closed 3 months ago

bartekpacia commented 3 months ago

I tried this but it doesn't work:

- name: Run GoReleaser
  uses: goreleaser/goreleaser-action@v5
  with:
    version: master
    args: release --clean
  env:
    GITHUB_TOKEN: ${{ secrets.TOKEN }}
    AUR_SSH_KEY: ${{ secrets.AUR_SSH_KEY }}
Screenshot 2024-03-21 at 23 46 35

Use case: take advantage of the fixes merged to master but not yet released (such as https://github.com/goreleaser/goreleaser/issues/4679)

caarlos0 commented 3 months ago

it's not exactly from master, but you can use the nightly tag.

builds weekly

bartekpacia commented 3 months ago

Thanks! Would be great if this info was included in README.

Still, I'd like to be able to use the version from master. I think the use case is valid.

caarlos0 commented 3 months ago

That would require building a nightly of every build... I think weekly should be good for now