chore(release): 0.9.2 #14
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: Publish NuGet Package | |
| on: | |
| push: | |
| tags: | |
| - 'v*.*.*' | |
| - 'v*.*.*-*' | |
| permissions: | |
| contents: write | |
| packages: write | |
| jobs: | |
| publish: | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.x' | |
| - name: Set up Xcode | |
| run: sudo xcode-select -s /Applications/Xcode_16.4.app | |
| - name: Build native XCFramework | |
| run: | | |
| cd UsbSerialForMacOS/Native | |
| ./build-dylib.sh | |
| - name: Install .NET workloads | |
| run: | | |
| dotnet workload install macos | |
| dotnet workload install maccatalyst | |
| - name: Build binding and pack NuGet | |
| run: | | |
| cd UsbSerialForMacOS | |
| dotnet build -c Release | |
| dotnet pack -c Release -o ./nupkg | |
| - name: Release Artifact | |
| uses: softprops/action-gh-release@v2 | |
| if: github.ref_type == 'tag' | |
| with: | |
| body_path: ${{ github.workspace }}/CHANGELOG.md | |
| make_latest: true | |
| files: UsbSerialForMacOS/nupkg/*.nupkg | |
| - name: Push to NuGet | |
| run: dotnet nuget push UsbSerialForMacOS/nupkg/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json |