Skip to content
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

FastLane + GitHub Actions + TestFlight = Mac-free Loop install #26

Merged
merged 28 commits into from
Dec 14, 2022
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3ab2ec0
Add Github Actions building with Fastlane
budsterblue Jul 25, 2022
e3c4c76
Add Loop Intent Extension to code signing
budsterblue Jul 26, 2022
a9f2150
Merge branch 'LoopKit:dev' into github-actions
budsterblue Nov 26, 2022
2829290
Switch to Xcode 14.1
budsterblue Nov 27, 2022
d7dd6cd
Merge branch 'github-actions' of https://github.com/budsterblue/LoopW…
ps2 Dec 11, 2022
b336ebf
Appstore certs for testflight
ps2 Dec 11, 2022
d3f9961
Update for testflight build
ps2 Dec 11, 2022
0416f13
Use appstore type on other steps
ps2 Dec 11, 2022
506dde6
Handle newline issue in fastlane key
ps2 Dec 11, 2022
af7fda9
Update prints
ps2 Dec 12, 2022
a880525
Update prints
ps2 Dec 12, 2022
4d8736e
Update prints
ps2 Dec 12, 2022
adcee3a
Update code_sign_identity for distribution
ps2 Dec 12, 2022
ea58426
Up timeout, and force identity for gym
ps2 Dec 12, 2022
80dfb87
Remove toplevel codesigning identity as it was trying to sign all fra…
ps2 Dec 12, 2022
044404f
Add small status widget extension
ps2 Dec 12, 2022
80118ac
Add small status widget extension
ps2 Dec 12, 2022
f19de1b
Add small status widget extension
ps2 Dec 12, 2022
a8b899c
Upload to testflight
ps2 Dec 12, 2022
ce04acf
Update G7
ps2 Dec 12, 2022
c6e1382
Update github action to publish to testflight
ps2 Dec 12, 2022
2bfc3fc
Remove unused actions
ps2 Dec 12, 2022
7f8d3d1
Better name for upload action
ps2 Dec 12, 2022
8987bca
Adding docs
ps2 Dec 13, 2022
ed0e527
Updates
ps2 Dec 13, 2022
2b15d2f
Updates from testing (#1)
ps2builder Dec 13, 2022
61e96d2
Merge remote-tracking branch 'upstream/dev'
ps2 Dec 14, 2022
37ddc15
Update testflight.md
ps2 Dec 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use appstore type on other steps
  • Loading branch information
ps2 committed Dec 11, 2022
commit 0416f131d7dcd0ca1eda57918578e99d9fe318b8
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -99,7 +99,7 @@ platform :ios do
)

match(
type: "development",
type: "appstore",
force: true,
git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}"),
app_identifier: ["com.#{TEAMID}.loopkit.Loop", "com.#{TEAMID}.loopkit.Loop.statuswidget", "com.#{TEAMID}.loopkit.Loop.LoopWatch.watchkitextension", "com.#{TEAMID}.loopkit.Loop.LoopWatch", "com.#{TEAMID}.loopkit.Loop.Loop-Intent-Extension"]
@@ -118,7 +118,7 @@ platform :ios do
)

match_nuke(
type: "development",
type: "appstore",
team_id: "#{TEAMID}",
skip_confirmation: true,
git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}")