aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yaml
diff options
context:
space:
mode:
authorLaurenČ›iu Nicola <[email protected]>2021-01-28 09:48:23 +0000
committerLaurenČ›iu Nicola <[email protected]>2021-01-28 09:53:25 +0000
commitac0b0794927725bb78a8fa1fef70fb9f661b416a (patch)
treec3594859b4ca93d28b31e6688f7206eaff4d0372 /.github/workflows/release.yaml
parent6a6a80eb1fba0f9d206f9384ecb78bf4ac87691e (diff)
Force XCode version
Diffstat (limited to '.github/workflows/release.yaml')
-rw-r--r--.github/workflows/release.yaml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 94b6aa7c4..82448f719 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -157,8 +157,12 @@ jobs:
157 runs-on: macos-latest 157 runs-on: macos-latest
158 env: 158 env:
159 RA_TARGET: x86_64-apple-darwin 159 RA_TARGET: x86_64-apple-darwin
160 SELECT_XCODE: /Applications/Xcode_12.2.app
160 161
161 steps: 162 steps:
163 - name: Select XCode version
164 run: sudo xcode-select -s "${SELECT_XCODE}"
165
162 - name: Checkout repository 166 - name: Checkout repository
163 uses: actions/checkout@v2 167 uses: actions/checkout@v2
164 168
@@ -183,8 +187,12 @@ jobs:
183 runs-on: macos-latest 187 runs-on: macos-latest
184 env: 188 env:
185 RA_TARGET: aarch64-apple-darwin 189 RA_TARGET: aarch64-apple-darwin
190 SELECT_XCODE: /Applications/Xcode_12.2.app
186 191
187 steps: 192 steps:
193 - name: Select XCode version
194 run: sudo xcode-select -s "${SELECT_XCODE}"
195
188 - name: Checkout repository 196 - name: Checkout repository
189 uses: actions/checkout@v2 197 uses: actions/checkout@v2
190 198