Skip to content

Commit 419d925

Browse files
James SmithJames Smith
authored andcommitted
Fix release workflow for macOS 15
1 parent e4dad78 commit 419d925

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
build-and-release:
13-
runs-on: macos-14
13+
runs-on: macos-15
1414
env:
1515
APP_VERSION: ${{ github.ref_name }}
1616
APP_BUILD: ${{ github.run_number }}
@@ -23,7 +23,9 @@ jobs:
2323
run: echo "APP_VERSION=${GITHUB_REF_NAME#v}" >> "$GITHUB_ENV"
2424

2525
- name: Select Xcode
26-
run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
26+
run: |
27+
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
28+
xcodebuild -version
2729
2830
- name: Run Swift tests
2931
run: swift test

scripts/build-macos-app.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ MODULE_CACHE="$CACHE_HOME/.cache/clang/ModuleCache"
1414
SWIFTPM_CACHE="$ROOT_DIR/.swiftpm-cache"
1515
SWIFTPM_CONFIG="$ROOT_DIR/.swiftpm-config"
1616
SWIFTPM_SECURITY="$ROOT_DIR/.swiftpm-security"
17-
APP_VERSION="${APP_VERSION:-0.1.2}"
17+
APP_VERSION="${APP_VERSION:-0.1.3}"
1818
APP_BUILD="${APP_BUILD:-1}"
1919
CODESIGN_IDENTITY="${CODESIGN_IDENTITY:--}"
2020

0 commit comments

Comments
 (0)