mirror of
https://github.com/Darkrock-Studios/hammer-editor.git
synced 2026-08-05 07:40:00 +00:00
Wire up two Mac lanes (desktop_testflight, desktop_release) alongside the existing Android setup, and a publish-mac-app-store job in the release workflow so each new release uploads a sandboxed .pkg to TestFlight on a macos-latest runner. The lane respects BUILD_NUMBER from env (CI sets it to github.run_number) and falls back to TestFlight + 1 locally. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
10 lines
361 B
Text
10 lines
361 B
Text
for_platform :android do
|
|
json_key_file("play_config.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
|
|
package_name("com.darkrockstudios.apps.hammer.android")
|
|
end
|
|
|
|
for_platform :mac do
|
|
app_identifier("com.darkrockstudios.apps.hammer")
|
|
apple_id("adamwbrown@gmail.com")
|
|
team_id("8P3G3HT4J5")
|
|
end
|