The problem we are facing is that this plugin runs for both -SNAPSHOT versions and release versions.
We build and publish development snapshots frequently to our Maven repo but we do not want to upload those to GitHub releases. We only want to upload final versions to GitHub releases. I can work around this by placing this in a non-active profile and passing a flag for releases, but an option to skip SNAPSHOT versions would greatly simplify things.
...or just a -Dgithub.release.skip=true flag would also be enough, and we could set this when we do the SNAPSHOT builds.
The problem we are facing is that this plugin runs for both
-SNAPSHOTversions and release versions.We build and publish development snapshots frequently to our Maven repo but we do not want to upload those to GitHub releases. We only want to upload final versions to GitHub releases. I can work around this by placing this in a non-active profile and passing a flag for releases, but an option to skip
SNAPSHOTversions would greatly simplify things....or just a
-Dgithub.release.skip=trueflag would also be enough, and we could set this when we do the SNAPSHOT builds.