-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Invalid iOS buildNumber on alpha/beta releases #185
Comments
Hi Cedric, Getting crazy with prereleases here!! Trying to generate a lodash template to generate Android/iOS versionCode/buildNumber that include prerelease info has been unsuccesfull so far. Tons of test showed me that the SemVer 'next' variable in templates does not contain prerelease info at all. A template like
generates
the strange thing is that 'recommended' generates "1.0.0-alpha.33" or so For ios I've been able to extract the prerelease info right from the 'recommended' string (with some regexp), but for android that is an integer with no prerelease info of any kind. PLEASE HELP!! |
Hi @byCedric, I would be also happy to have the prerelease info available for the Android version to be able to construct a different number. I see that @AlbertoLopSie made a PR which replaces --- current version (semver.coerce)
+++ semver.clean + semver.parse
@@ -2,11 +2,11 @@
options: {},
loose: false,
includePrerelease: false,
- raw: '1.66.18',
+ raw: '1.66.18-alpha.6',
major: 1,
minor: 66,
patch: 18,
- prerelease: [],
+ prerelease: [ 'alpha', 6 ],
build: [],
- version: '1.66.18'
+ version: '1.66.18-alpha.6'
}
As @AlbertoLopSie said, currently it is impossible to generate a new Android version number when only the prerelase part changes, because the prerelease info is not present in any of the available variables. |
Also, the following lines of the README are untrue:
because |
@byCedric Is there any chance this is going to be fixed? The fix may be as easy as replacing |
Any update on this? Facing the same issue and having this resolved would remove such a headache. |
Hi Cedric,
I've just detected that when publishing a new release to an alpha branch, semantic release by default creates a version tag like 1.0.0-alpha.3 and semantic-release-expo copies that tag to the expo.version and expo.ios.buildNumber fields in App.json.
However, trying to publish an Expo project with a buildNumber lie that throws an error:
The referred Expo documetation refers to an Apple developer doc explaining that the accepted form for a buildNumber like this should be something like 1.0.0a3
What would you suggest?
Changing the semantic-release-expo prepare.versions.ios lodash template? (my knowledge of lodash templates is close to none, could you suggest one?)
Changing the semantic-release tagFormat?
I would greatly appreciate your opinion/support on this.
The text was updated successfully, but these errors were encountered: