File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,19 +48,19 @@ jobs:
48
48
echo "BUILD_SCHEME=${{ matrix.swift-version }}" >> $GITHUB_ENV
49
49
echo "TARGET_ARCHS=${{ matrix.arch }}" >> $GITHUB_ENV
50
50
echo "WORKDIR=${{ runner.temp }}/swift-android-sdk" >> $GITHUB_ENV
51
- SWIFT_TAG =$(curl -fsSL https://download.swift.org/${{ matrix.swift-version }}/ubuntu2404/latest-build.yml | grep '^dir: ' | cut -f 2 -d ' ')
52
- echo "SWIFT_TAG =${SWIFT_TAG }" >> $GITHUB_ENV
51
+ SWIFT_VERSION =$(curl -fsSL https://download.swift.org/${{ matrix.swift-version }}/ubuntu2404/latest-build.yml | grep '^dir: ' | cut -f 2 -d ' ')
52
+ echo "SWIFT_VERSION =${SWIFT_VERSION }" >> $GITHUB_ENV
53
53
- name : Build Android SDK (Local)
54
54
if : ${{ matrix.build-type == 'local' }}
55
55
working-directory : swift-ci/sdks/android
56
56
run : |
57
57
sudo apt install -q ninja-build patchelf
58
- ./build-local tag:${SWIFT_TAG } ${WORKDIR}
58
+ ./build-local tag:${SWIFT_VERSION } ${WORKDIR}
59
59
- name : Build Android SDK (Docker)
60
60
if : ${{ matrix.build-type == 'docker' }}
61
61
working-directory : swift-ci/sdks/android
62
62
run : |
63
- ./build-docker tag:${SWIFT_TAG } ${WORKDIR}
63
+ ./build-docker tag:${SWIFT_VERSION } ${WORKDIR}
64
64
- name : Install Host Toolchain
65
65
if : ${{ matrix.build-type == 'docker' }}
66
66
working-directory : swift-ci/sdks/android
You can’t perform that action at this time.
0 commit comments