Skip to content

Commit efb6890

Browse files
committed
πŸ”€οΈ Merge branch 'release/LekaApp/1.10.0'
2 parents b1e0476 + 605ef65 commit efb6890

1,031 files changed

Lines changed: 35880 additions & 3772 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

β€Ž.github/workflows/ci-content-reviews_activity_chatgpt.ymlβ€Ž

Lines changed: 0 additions & 78 deletions
This file was deleted.

β€Ž.github/workflows/ci-content-reviews_curriculum_chatgpt.ymlβ€Ž

Lines changed: 0 additions & 78 deletions
This file was deleted.

β€Ž.github/workflows/ci-fastlane-release_app_store.ymlβ€Ž

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ concurrency:
1313
cancel-in-progress: true
1414

1515
env:
16-
TUIST_TURN_OFF_LINTERS: TRUE
1716
APP_STORE_CONNECT_API_KEY_CONTENT_RELEASE_APP_STORE: ${{ secrets. APP_STORE_CONNECT_API_KEY_CONTENT_RELEASE_APP_STORE }}
1817
APP_STORE_CONNECT_ISSUER_ID: ${{ secrets. APP_STORE_CONNECT_ISSUER_ID }}
1918
APP_STORE_CONNECT_API_KEY_ID_RELEASE_APP_STORE: ${{ secrets. APP_STORE_CONNECT_API_KEY_ID_RELEASE_APP_STORE }}
@@ -23,9 +22,9 @@ env:
2322

2423
jobs:
2524
release_app_store:
26-
if: contains(github.event.label.name, 'fastlane:deliver')
25+
if: github.event_name == 'pull_request' && contains(github.event.label.name, 'fastlane:deliver')
2726
name: fastlane upload_to_app_store
28-
runs-on: [self-hosted, iOS]
27+
runs-on: [self-hosted, iOS, release]
2928

3029
env:
3130
PR_NUMBER: ${{ github.event.pull_request.number }}
@@ -52,8 +51,6 @@ jobs:
5251
5352
- name: bundle install
5453
run: |
55-
gem uninstall bundler --all --ignore-dependencies --executables
56-
gem install --force bundler
5754
bundle install
5855
5956
- name: tuist install

β€Ž.github/workflows/ci-fastlane-release_beta_internal.ymlβ€Ž

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ on:
1919
- "Tuist/Package.swift"
2020
- "Tuist/Package.resolved"
2121
- "fastlane/Fastfile" # TODO: (@ladislas) remove this line after test
22+
workflow_dispatch: # nothing to setup here, just to trigger the workflow manually
2223

2324
concurrency:
2425
group: ${{ github.workflow }}-${{ github.ref }}
2526
cancel-in-progress: true
2627

2728
env:
28-
TUIST_TURN_OFF_LINTERS: TRUE
2929
APP_STORE_CONNECT_API_KEY_CONTENT: ${{ secrets. APP_STORE_CONNECT_API_KEY_CONTENT }}
3030
APP_STORE_CONNECT_ISSUER_ID: ${{ secrets. APP_STORE_CONNECT_ISSUER_ID }}
3131
APP_STORE_CONNECT_API_KEY_ID: ${{ secrets. APP_STORE_CONNECT_API_KEY_ID }}
@@ -36,8 +36,8 @@ env:
3636
jobs:
3737
internal_beta_release:
3838
name: fastlane release beta_internal
39-
runs-on: [self-hosted, iOS]
40-
if: (github.event_name == 'pull_request' && contains(github.event.label.name, 'fastlane:beta')) || (github.event_name == 'push')
39+
runs-on: [self-hosted, iOS, release]
40+
if: (github.event_name == 'pull_request' && contains(github.event.label.name, 'fastlane:beta')) || (github.event_name == 'push') || (github.event_name == 'workflow_dispatch')
4141

4242
env:
4343
PR_NUMBER: ${{ github.event.pull_request.number }}
@@ -65,8 +65,6 @@ jobs:
6565
6666
- name: bundle install
6767
run: |
68-
gem uninstall bundler --all --ignore-dependencies --executables
69-
gem install --force bundler
7068
bundle install
7169
7270
- name: tuist install
@@ -82,7 +80,7 @@ jobs:
8280
bundle exec fastlane sync_certificates release:true --verbose
8381
8482
- name: fastlane beta_internal LekaApp
85-
if: (github.event_name == 'pull_request' && contains(github.event.label.name, 'LekaApp')) || (github.event_name == 'push')
83+
if: (github.event_name == 'pull_request' && contains(github.event.label.name, 'LekaApp')) || (github.event_name == 'push') || (github.event_name == 'workflow_dispatch')
8684
run: |
8785
bundle exec fastlane beta_internal targets:LekaApp --verbose
8886

β€Ž.github/workflows/ci-linter-license_checker.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 1
25-
lfs: true
25+
lfs: false
2626

2727
- name: Install deno
2828
uses: denoland/setup-deno@v1

β€Ž.github/workflows/ci-linter-pre_commit_hooks.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 2
29-
lfs: true
29+
lfs: false
3030

3131
- name: Run pre-commit hooks --all-files
3232
if: matrix.files == 'all_files'

β€Ž.github/workflows/ci-linter-swiftformat.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0 # Fetch all history for all branches and tags
27-
lfs: true
27+
lfs: false
2828

2929
- name: Setup mise
3030
run: |

β€Ž.github/workflows/ci-linter-swiftlint.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0 # Fetch all history for all branches and tags
27-
lfs: true
27+
lfs: false
2828

2929
- name: Setup mise
3030
run: |

β€Ž.github/workflows/ci-system-upgrade_tools_and_clean.ymlβ€Ž

Lines changed: 0 additions & 120 deletions
This file was deleted.

β€Ž.github/workflows/ci-tuist-build.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/checkout@v4
4040
with:
4141
fetch-depth: 1 # shallow clone
42-
lfs: true
42+
lfs: false
4343

4444
- name: Setup mise
4545
run: |

0 commit comments

Comments
Β (0)