Package not publishing to GitHub
I must be stupid, I've tried this so many times and cannot get it to work.
I'm using multiple GitHub actions to try to completely automate the package generation after every commit, everything is successful except it just does not publish the .zip on GitHub.
Can you please take a look at my Actions log and tell me what am I missing?
https://github.com/eTzmNcbkrng/WardTools/actions
The packager does not see tags that are created inside your action, because it uses the GitHub API to create the tag in the remote repository, rather then applying it to the checkout inside the action runner.
As a result, the packager only creates "alpha" packages, which do not get uploaded to GitHub.
I kind of understand what you are saying, I have changed it so that a discrete action creates a tag and release on every push to master (which succeeds) and then a secondary action which is supposed to run the packager whenever a tag is created however the secondary action never fires.
Is there a simpler method for achieving what I am trying to do - automatically create a new package whenever a commit is made to master?