v13.7.1 #10
Workflow file for this run
This file contains hidden or 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: "Release Artifacts" | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| carthage_archive: | |
| name: Darwin, Xcode 14.0 | |
| runs-on: macos-12 | |
| strategy: | |
| matrix: | |
| xcode: ["14.0.1"] | |
| env: | |
| DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Archive Nimble | |
| run: | | |
| ./test carthage | |
| zip -r Nimble.xcframework.zip Carthage/Build/Nimble.xcframework | |
| - name: Upload Nimble.xcframework.zip | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| Nimble.xcframework.zip |