Skip to content

Commit

Permalink
Some script changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dartsyms committed May 7, 2023
1 parent 30e7b18 commit 3c4c376
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
- name: 'Setup xcode'
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '13.4' # needs to be the latest possible
xcode-version: '14.1' # needs to be the latest possible

- name: 'Install desktop Qt'
uses: jurplel/install-qt-action@v3
Expand Down Expand Up @@ -190,12 +190,14 @@ jobs:
bundler-cache: true

- name: 'Decode signing certificate and save its content to the file'
working-directory: ./client
env:
CERTIFICATE_BASE64: ${{ secrets.IOS_DIST_SIGNING_KEY }}
run: |
echo $CERTIFICATE_BASE64 | base64 --decode > signing-cert.p12
- name: 'Build and upload iOS binary'
working-directory: ./client
run: bundle exec fastlane ios build_and_upload_to_testflight
env:
APPSTORE_CONNECT_KEY_ID: ${{ secrets.APPSTORE_CONNECT_KEY_ID }}
Expand Down
2 changes: 1 addition & 1 deletion client/fastlane/Appfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#app_identifier(["org.amnezia.AmneziaVPN", "org.amnezia.AmneziaVPN.network-extension"]) # The bundle identifier of your app
app_identifier(["org.amnezia.AmneziaVPN"])
apple_id("some_real_account@apple.id") # TODO: replace with apple id
apple_id("admin@amnezia.org") # TODO: replace with apple id
itc_team_id("122591025") # App Store Connect Team ID
team_id("X7UJ388FXK") # Developer Portal Team ID
2 changes: 1 addition & 1 deletion client/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
project_name = "AmneziaVPN"
project_scheme = "AmneziaVPN"
project_identifier = "org.amnezia.AmneziaVPN"
itunes_username = "dartsyms@gmail.com"
itunes_username = "admin@amnezia.org"

before_all do
ENV['GYM_SCHEME'] = project_scheme
Expand Down

0 comments on commit 3c4c376

Please sign in to comment.