Added MinimumOSVersion into Info.plist #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release | |
# Create XCFramework when a version is tagged | |
on: | |
push: | |
tags: | |
- 1.** | |
jobs: | |
create_release: | |
name: Create Release | |
runs-on: macos-12 | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.x | |
- uses: actions/checkout@v3 | |
- name: Build WireGuardKitGo | |
run: make wg-go-framework-zip | |
- uses: ncipollo/[email protected] | |
with: | |
artifacts: Sources/WireGuardKitGo/out/WireGuardKitGo.xcframework.zip | |
bodyFile: Sources/WireGuardKitGo/out/WireGuardKitGo.xcframework.zip.sha256 | |
makeLatest: true |