Skip to content

Commit b7e7201

Browse files
committed
more nightly fixes /2
1 parent b3f5eac commit b7e7201

2 files changed

Lines changed: 11 additions & 9 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
path: dist
8181
- id: build_sha
8282
run: echo "BUILD_SHA=$(cat dist/BUILD_SHA)" >> $GITHUB_OUTPUT
83-
- uses: tomasbkk/action-automatic-releases@v1
83+
- uses: tomasbkk/action-automatic-releases@v1.2.2
8484
with:
8585
repo_token: ${{ secrets.GITHUB_TOKEN }}
8686
automatic_release_tag: nightly

ios/fastlane/Fastfile

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,6 @@ platform :ios do
3434
keychain_password: 'ci_keychain',
3535
readonly: true
3636
)
37-
api_key = app_store_connect_api_key(
38-
key_id: "7Y2672U2SB",
39-
issuer_id: "30624ccb-31b2-4387-8cf8-96b21e445f29",
40-
key_content: ENV["APPLE_API_KEY"],
41-
duration: 1200,
42-
in_house: false
43-
)
4437
else
4538
# please run bundle exec fastlane match appstore manually
4639
end
@@ -51,14 +44,23 @@ platform :ios do
5144
export_method: "app-store"
5245
)
5346

47+
app_store_connect_api_key(
48+
key_id: "7Y2672U2SB",
49+
issuer_id: "30624ccb-31b2-4387-8cf8-96b21e445f29",
50+
key_content: ENV["APPLE_API_KEY"],
51+
duration: 1800,
52+
in_house: false
53+
)
54+
5455
upload_to_testflight(
55-
api_key: api_key,
5656
distribute_external: true,
5757
groups: "Extern",
5858
notify_external_testers: false,
5959
# TODO: CI: move automatic release step into job running prior this
6060
# and fetch changelog from the release notes
6161
changelog: "Latest nightly build changes",
62+
beta_app_feedback_email: "me+insporation@jhass.eu",
63+
beta_app_description: "Latest nightly build changes",
6264
reject_build_waiting_for_review: true
6365
)
6466
end

0 commit comments

Comments
 (0)