-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
How to use with Github Actions? #75
Comments
I would run the following: git clone https://github.com/liamnichols/xcstrings-tool
cd xcstrings-tool
swift build -c release
.build/release/xcstrings-tool generate path/to/localizable.xcstrings path/to/generated.swift But is this enough? |
Hey @LuegM, you shouldn't need to run the The only thing that you would need to do on the CI is to mark the plugin as trusted by doing something like this: #42 (reply in thread) |
Thank you! adding this was enough for it to work: - name: Set Xcode Defaults
run: defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidatation -bool YES |
I am using
Github Actions
to build my app and distribute it to Testflight.Would this plugin work with my automation?
Or what would I need to do to make it work?
The text was updated successfully, but these errors were encountered: