Skip to content

Commit

Permalink
Update Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobkoerber committed Feb 2, 2024
1 parent 2169824 commit 7954b0c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/deploy_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,19 @@ jobs:
with:
channel: stable
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:'
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:arch:'

- if: matrix.platform == 'android'
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'

- name: Cache pub dependencies
uses: actions/cache@v3
with:
path: ${{ env.FLUTTER_HOME }}/.pub-cache
key: ${{ runner.os }}-pub-${{ hashFiles('**/pubspec.lock') }}
restore-keys: ${{ runner.os }}-pub-

- name: Install Flutter Packages
run: flutter pub get
run: |
flutter config --no-analytics
flutter pub get
- if: matrix.platform == 'ios'
name: Install CocoaPods
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:
- name: Run Tests
run: flutter test

- name: Build Project
- name: Build Project for iOS
run: flutter build ipa --no-codesign
2 changes: 1 addition & 1 deletion ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ platform :ios do
skip_certificate_matching: true
)

previous_build_number = latest_testflight_build_number
previous_build_number = latest_testflight_build_number(version: "#{get_version_number}", initial_build_number: 0, app_identifier: "de.tum.cit.ase.ios2324.tum")

current_build_number = previous_build_number + 1

Expand Down

0 comments on commit 7954b0c

Please sign in to comment.