-
Notifications
You must be signed in to change notification settings - Fork 21
Description
Hi,
Related to this PR & Issue. But since they are closed, I create this new issue.
We are deploying dokuwiki and selected plugins into a docker image which then gets deployed. To keep dokuwiki and plugins up to date, we use a script to download the specific release archives and extract these into place into the rootfs of the image. This works well for the majority of plugins, but prosemirror are somewhat an exception.
The current latest release is 2023-11-08 and the tagged archive to download would be https://github.com/cosmocode/dokuwiki-plugin-prosemirror/archive/refs/tags/2023-11-08.tar.gz
However, since it's the tagged commit is in master-branch, this archive isn't built and thus is missing lib/bundle.js (among other things).
Instead it would be preferable if the tagged commit would be the corresponding commit in the release-branch.
For the 2023-11-08 release that commit would be 733ac1c (https://github.com/cosmocode/dokuwiki-plugin-prosemirror/archive/733ac1c51173e10d8cbe500f42ad691fd454a5e8.tar.gz), which contains what's needed.
Alternatively if a "real" Github release would be generated out of this commit.
Thank you in advance!