Skip to content

Commit 8f1ce9e

Browse files
committed
fix referencing github env
1 parent 078ccca commit 8f1ce9e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
XCODE_VERSION=15.2
1+
XCODE_VERSION=15.2.0

.github/workflows/ios_build_and_commit_files.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: prepare xcode
2020
uses: maxim-lobanov/setup-xcode@v1
2121
with:
22-
xcode-version: $XCODE_VERSION
22+
xcode-version: ${{ env.XCODE_VERSION }}
2323

2424
- name: Install flutter wrapper
2525
run: ./scripts/install_flutter_wrapper.sh

.github/workflows/ios_build_and_deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: prepare xcode
2323
uses: maxim-lobanov/setup-xcode@v1
2424
with:
25-
xcode-version: $XCODE_VERSION
25+
xcode-version: ${{ env.XCODE_VERSION }}
2626

2727
- name: Install flutter wrapper
2828
run: ./scripts/install_flutter_wrapper.sh

.github/workflows/ios_integration_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: prepare xcode
5252
uses: maxim-lobanov/setup-xcode@v1
5353
with:
54-
xcode-version: $XCODE_VERSION
54+
xcode-version: ${{ env.XCODE_VERSION }}
5555

5656
- name: "Prepare environment for ios"
5757
working-directory: ./scripts

0 commit comments

Comments
 (0)