IOS secrets injection#54
Merged
Merged
Conversation
added 5 commits
August 22, 2025 08:33
This introduces a new GitHub Action to securely export sensitive properties from GitHub Secrets into an iOS .xcconfig file, Base64 encoding values and validating required keys.
Allow exporting specified secrets into an .xcconfig file for use during the iOS build process.
This enables the injection of secrets into the iOS build process via .xcconfig files.
Enables injecting sensitive properties into .xcconfig files during iOS cloud build and release workflows for secure secret handling.
Renamed `export_secrents_ios` to `export_secrets_ios` to fix a spelling error in the directory name.
jmarek41
approved these changes
Aug 26, 2025
Aligns workflows with the stable version of the action.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces a new GitHub Action to export secrets to iOS
.xcconfigfiles. It encodes secret values to Base64 and appends them to the specified file. The action is integrated into various iOS build and release workflows.Key Features
export_secrets_iosfor managing iOS secrets..xcconfigfile.REQUIRED_KEYSare present and have non-empty values.ios-cloud-build.ymlios-cloud-release.ymlios-kmp-selfhosted-build.ymlios-kmp-selfhosted-release.ymlios-selfhosted-build.ymlios-selfhosted-release.ymlNew Workflow Parameters
xcconfig_path.xcconfigfile where secrets will be appended.required_keysSECRET_PROPERTIES.SECRET_PROPERTIESKEY = VALUEformat, one per line.