roflmuffin / CounterStrikeSharp

CounterStrikeSharp allows you to write server plugins in C# for Counter-Strike 2/Source2/CS2
https://docs.cssharp.dev
Other
709 stars 110 forks source link

No way to download CSS automatically #506

Open milkywayfarer opened 2 weeks ago

milkywayfarer commented 2 weeks ago

Stuck with a problem that requires me to add a build tag along with the CSS version to my environment variables to pull the release to my server using a bash script. As it seems, GitHub Actions adds a tag to every release asset name, which makes "hard-wiring" a download link a chore (for example, MatchZy releases a zip asset named MatchZy-${MATCHZY_VERSION}.zip, whereas I need to do something along the lines of counterstrikesharp-${CSS_VERSION}-build-${CSS_BUILDTAG}.zip and manually change the tag every time a new release comes).

TLDR it would be nice to have a static link to a latest release (or include only a version in the asset name).

Thanks!