-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release assets fallback to first/default .zip even if releaseassets regex is applied. #529
Comments
One possible issue is regex syntax. PUC uses the provided regex as-is, without adding any delimiters or flags. So if your regex is literally |
Just changed it to a better pattern. Stil points to the main release zip. |
That part of the code doesn't have enough logging to effectively debug it remotely. Would you perhaps be willing to step through it yourself or add some logging statements? This is the method that checks if an asset link/name matches the regex: |
Sure no problem. However I failed to mention the repo is a private repo. And maybe it cant find this asset because the link contains no token like the default asset link does have. Or am i overthinking it? UpdateThe problem it was not pointing to the correct asset was first of all the delimiters. I was missing |
Ah, it sounds like there was also a PUC version issue. There have been some changes to how release assets work with the update checker, but I forgot that I haven't published those changes as a new release yet. So you might get different behaviour depending on if you used the I'll make a note to release a new PUC version. |
When using the gitlab-ci.yml file of mine I can succesfully build releases for my wordpress theme.
Each release that I build comes with 5 assets 1 of them being a build package containing no source files (no src/scss/gulp files etc...) that i want to use in the plugin update checker.
I'm calling the enableReleaseAssets and using the name of the zip, 'landingpages.zip'
But it falls back to the full release asset.
I read in the documentation about the 3 ways to get an update
-tag
-release
-stablebranche
I want to add tags to my release, but I also want to use the custom release assets.
How am I supposed to setup the update checker so it uses the correct release asset and not just the first one it encounters.
I looks like its not working but maybe because i am using tags in my release the custom release assets are ignored?
I'm kind of stuck and would like some help on this.
The asset link I want to use
https://gitlab.com/api/v4/projects/projectid/packages/generic/landingpages/v4.4.6/landingpages.zip
The (first) asset link it is always pointing to regardless of my enableReleaseAssets calback.
https://gitlab.com/user/landingpages/-/archive/v4.4.6/landingpages-v4.4.6.zip)
Release assets
gitlab-ci.yml
The text was updated successfully, but these errors were encountered: