brewkit icon indicating copy to clipboard operation
brewkit copied to clipboard

make ignoring github pre-releases optional

Open jhheider opened this issue 1 year ago • 3 comments

See: https://github.com/foundry-rs/foundry/releases

jhheider avatar Apr 12 '24 19:04 jhheider

Or perhaps (for less breaking), make including pre-releases optional?

Something like this:

versions:
    github: org/repo/releases
    strip: /v/
    prerelease: true # this

Or, maybe an additional /pre-releases option? Like:

versions:
    - github: org/repo/pre-releases
      strip: /v/
    # If they release any proper (stable) version, it'd match that as well.
    - github: org/repo/releases
      strip: /v/

rustdevbtw avatar Apr 13 '24 10:04 rustdevbtw

Exactly. include-prereleases: bool? was what I was thinking.

jhheider avatar Apr 13 '24 15:04 jhheider

Really we should build them and then have pkgx ignore them by default. If they don’t build then we discard that release because we don't care much.

mxcl avatar Sep 07 '24 15:09 mxcl