File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 66
77jobs :
88 publish :
9- runs-on : ubuntu-latest
9+ runs-on : macos-14
1010 permissions :
1111 contents : read
1212 packages : write
1313 steps :
1414 - name : Checkout
1515 uses : actions/checkout@v4
1616
17+ - name : Select Xcode
18+ run : |
19+ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
20+ xcodebuild -version
21+
22+ - name : Install tools
23+ run : |
24+ brew update
25+ brew install cmake # if your native build expects it
26+ cmake --version
27+
1728 - name : Set up JDK
1829 uses : actions/setup-java@v4
1930 with :
2738 - name : Compute version from tag
2839 id : v
2940 run : |
30- # e.g., tag "v0.6.1" -> "0.6.1"
3141 RAW_REF="${GITHUB_REF_NAME}"
3242 VERSION="${RAW_REF#v}"
3343 echo "version=$VERSION" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments