We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c474c84 commit 7621d35Copy full SHA for 7621d35
2 files changed
.github/workflows/build-analyse.yml
@@ -6,16 +6,19 @@ on:
6
pull_request:
7
branches: [ "main" ]
8
9
+env:
10
+ XCODE_VERSION: '15.4'
11
+
12
jobs:
13
build:
14
name: Build and analyse using xcodebuild command
- runs-on: macos-13
15
+ runs-on: macos-14
16
17
steps:
18
- name: Setup Xcode version
19
uses: maxim-lobanov/setup-xcode@v1
20
with:
- xcode-version: 14.3.1
21
+ xcode-version: ${{ env.XCODE_VERSION }}
22
23
- name: Checkout
24
uses: actions/checkout@v4
.github/workflows/build-release.yml
@@ -1,6 +1,7 @@
1
name: Build Release
2
3
on:
4
+ workflow_dispatch:
5
push:
tags:
- "v*.*"
0 commit comments