Reputation: 43
I want a specific Name to be given when someone Downloads the Zip Package from my GitHub Repo.
My Problem is: the Name must have an appended Version Number like My_File_1.0.2
.
But GitHub automagically generates the Name from the Repo name.
As a Workaround, I can only think of using multiple branches, but that is a hell of a mess to deal with.
Isn't there a better way to do this? I am thinking of some sort of config file.
Upvotes: 4
Views: 992
Reputation: 1326782
You would need to create that archive file yourself (with the right naming convention) and add it as a release to your tag.
That tag already references the zip/tgz of the repo, but using a naming convention which does not suit you, as seen here.
Upvotes: 2