We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f8ece commit 37e0bceCopy full SHA for 37e0bce
.github/workflows/xcframework-release.yml
@@ -8,10 +8,14 @@ on:
8
jobs:
9
macos:
10
name: Build XCFramework
11
- runs-on: macos-latest
+ runs-on: macos-15
12
+ env:
13
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v4
17
+ with:
18
+ submodules: recursive
19
- name: Generate Xcode project
20
run: swift package --disable-sandbox tuist generate -p Projects/ --no-open
21
- name: Archive & Create XCFramework
@@ -75,4 +79,4 @@ jobs:
75
79
7z a -tzip -mx=9 P256K.xcframework.zip P256K.xcframework
76
80
- name: Upload XCFramework
77
81
run: |
78
- gh release upload ${{ github.ref_name }} P256K.xcframework.zip
82
+ gh release upload ${{ github.ref_name }} P256K.xcframework.zip
0 commit comments