How do you organise your GitHub repositories with extensions? #893
-
I'm interested in where you put your zip archives on GitHub so that they are not in the same repo as your files and how you get there. Do you use workflows or actions to organise files, folders, etc. on GitHub? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
The recommended method is to use individual repositories for each extension. This is required by the self-review checklist if you are planning to publish your code officially. If your extension should stay experimental, you can simply reference the repositories auto-generated zip download in your documentation and installation settings, e.g. Not speaking as a maintainer, I'm a little rebellious at this point and prefer one multi-extensions repository for various reasons. 😈 A workflow to create zip files indeed would be nice, for now I'm doing this manually and store them in a downloads folder inside my repo. |
Beta Was this translation helpful? Give feedback.
-
Use one repository per extension. A ZIP file is automatically created by GitHub. Users can now download the ZIP file and copy it into their |
Beta Was this translation helpful? Give feedback.
Use one repository per extension. A ZIP file is automatically created by GitHub. Users can now download the ZIP file and copy it into their
system/extensions
folder. Please note that ZIP files must contain a file calledextension.ini
, otherwise Datenstrom Yellow doesn't know what to do with it. Learn more about making and publishing extensions.