You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Github now allows you to use actions that could create a release and attach a zipped version of the module for you. Putting an example action in the documentation (docs/register_an_addon.md) might be very helpful. Here is the one I use for the Any Cloud module. You create a tag with the version of the module you want to create a release for (v2.2.3 for example) and the action takes over from there:
It downloads composer, installs the versions of the dependencies indicated in your composer.lock file in the repository, zips everything up except what you put in the exclusions section, and adds the text of RELEASE.md as the text of the release.
In any case, this might be helpful to other developers and make things a little easier than manually uploaded a .zip file to every release. Creating a git tag for a release and letting GitHub do all the other work is really helpful.
The text was updated successfully, but these errors were encountered:
Github now allows you to use actions that could create a release and attach a zipped version of the module for you. Putting an example action in the documentation (
docs/register_an_addon.md
) might be very helpful. Here is the one I use for the Any Cloud module. You create a tag with the version of the module you want to create a release for (v2.2.3 for example) and the action takes over from there:.github/workflows/release.yml
It downloads composer, installs the versions of the dependencies indicated in your
composer.lock
file in the repository, zips everything up except what you put in theexclusions
section, and adds the text ofRELEASE.md
as the text of the release.In any case, this might be helpful to other developers and make things a little easier than manually uploaded a
.zip
file to every release. Creating agit
tag for a release and letting GitHub do all the other work is really helpful.The text was updated successfully, but these errors were encountered: