Skip to content

Commit

Permalink
Fix working directory for prepare scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tk-nguyen authored and hoangdat committed Jan 5, 2024
1 parent e6d4097 commit a5bfe21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,11 @@ jobs:

- name: Prepare iOS release
if: matrix.os == 'ios'
run: ../scripts/prepare-ios.sh
working-directory: ${{ matrix.os }}
run: ./scripts/prepare-ios.sh

- name: Release on Play Store internal track
if: matrix.os == 'android'
run: ../scripts/release-playstore-beta.sh
working-directory: ${{ matrix.os }}
run: ./scripts/release-playstore-beta.sh

- name: Release on TestFlight
if: matrix.os == 'ios'
Expand Down
1 change: 1 addition & 0 deletions scripts/release-playstore-beta.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
flutter pub get && flutter pub run build_runner build --delete-conflicting-outputs
flutter build appbundle --release
cd android
bundle exec fastlane deploy_internal_test

0 comments on commit a5bfe21

Please sign in to comment.