File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 11name : Release
22
3+ # This workflow runs platform-specific release workflows, collects platform-specific artifacts
4+ # and creates a GitHub Release with all the artifacts attached.
5+
36on :
47 push :
58 tags :
6- - ' [0-9]+.[0-9]+.[0-9]+'
9+ - ' [0-9]+.[0-9]+.[0-9]+' # run on push to tags matching X.Y.Z
710
811jobs :
12+ # Run the Apple release workflow
913 release_apple :
1014 uses : ./.github/workflows/release_apple.yml
1115 with :
1216 tag : ${{ github.ref_name }}
1317
18+ # Add other platform-specific release jobs here as they are added.
19+ # release_windows:
20+ # uses: ./.github/workflows/release_windows.yml
21+ # with:
22+ # tag: ${{ github.ref_name }}
23+
1424 release :
1525
1626 runs-on : ubuntu-latest
27+ # Wait for the Apple release workflow to complete
28+ # Add more platform-specific jobs here as they are added.
1729 needs : release_apple
1830
1931 steps :
Original file line number Diff line number Diff line change @@ -94,5 +94,5 @@ ditto -c -k --keepParent "${DIST_DIR}/${NAME}.xcframework" "${DIST_DIR}/${NAME}.
9494echo " ✅ Zipped ${DIST_DIR} /${NAME} .xcframework.zip"
9595
9696checksum=" $( swift package compute-checksum " ${DIST_DIR} /${NAME} .xcframework.zip" ) "
97- echo " $checksum " > " ${DIST_DIR} /${NAME} .xcframework.zip.checksum"
97+ echo " $checksum " > " ${DIST_DIR} /${NAME} .xcframework.zip.checksum.txt "
9898echo " Checksum: ${checksum} "
You can’t perform that action at this time.
0 commit comments