Skip to content

Commit

Permalink
Fix xcodecloud and github workflow script
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulPickhardt committed Nov 28, 2023
1 parent f42ec5e commit 858fc48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
test:
runs-on: self-hosted
container: cirrusci/flutter:3.7.3
container: ghcr.io/cirruslabs/flutter:3.16.0
steps:
- uses: actions/checkout@v2
- name: Run unit tests
Expand All @@ -23,7 +23,7 @@ jobs:
distribute:
runs-on: self-hosted
needs: test
container: cirrusci/flutter:3.7.3
container: ghcr.io/cirruslabs/flutter:3.16.0
steps:
- uses: actions/checkout@v2
- name: Build the Android app bundle
Expand Down
4 changes: 2 additions & 2 deletions ios/ci_scripts/ci_post_clone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ set -x
set -e

# The default execution directory of this script is the ci_scripts directory.
cd $CI_WORKSPACE # change working directory to the root of your cloned repo.
cd $CI_PRIMARY_REPOSITORY_PATH # change working directory to the root of your cloned repo.

# Copy the .netrc to the home directory for mapbox
cp .netrc $HOME/.netrc
chmod 600 $HOME/.netrc

# Install Flutter using git.
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.7.3 $HOME/flutter
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.16.0 $HOME/flutter
export PATH="$PATH:$HOME/flutter/bin"

# Install Flutter artifacts for iOS (--ios), or macOS (--macos) platforms.
Expand Down

0 comments on commit 858fc48

Please sign in to comment.