-
Notifications
You must be signed in to change notification settings - Fork 263
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
[3.x.x] Add release workflow github action #1496
Conversation
@@ -24,6 +24,8 @@ create_xcframework() { | |||
echo "Created ${FRAMEWORK_FOLDER_NAME}" | |||
echo "Archiving ${FRAMEWORK_NAME}" | |||
|
|||
xcodebuild -list |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this just to help debug if something goes wrong?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's copied over from the file on main: https://github.com/OneSignal/OneSignal-iOS-SDK/pull/1340/files
However it may be leftover from the testing process.
.github/workflows/cd.yml
Outdated
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: 'OneSignal/OneSignal-iOS-SDK' | ||
force: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this need to be force? Or is it required to create the branch?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's copied over from the file on main: https://github.com/OneSignal/OneSignal-iOS-SDK/pull/1340/files
However I have tested it and it is not necessary.
* Force push is not necessary * xcodebuild list seems leftover from testing
9528dfd
to
eea3dcb
Compare
Description
One Line Summary
Action for building the release binaries and updating the Package.swift for a release
Details
Adapted from the workflow on
main
.This action is intended to
It does NOT
How to use this action:
Motivation
Improve the release process
Manual testing
Released 3.12.10 with this action.
Affected code checklist
Checklist
Overview
Testing
Final pass
This change is