Bump ncipollo/release-action from 1.18.0 to 1.20.0 #39
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: CI | |
| on: | |
| pull_request: | |
| env: | |
| FORCE_COLOR: "1" | |
| defaults: | |
| run: | |
| shell: bash | |
| # Cancel active CI runs for a PR before starting another run | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| config: | |
| name: ${{ matrix.target }} | |
| runs-on: macOS-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| target: [ "iOS", "MacCatalyst", "tvOS", "visionOS", "watchOS" ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Set up Python | |
| uses: actions/[email protected] | |
| with: | |
| python-version: "3.X" | |
| - name: Build BZip2 for ${{ matrix.target }} | |
| run: | | |
| make BZip2-${{ matrix.target }} | |
| - name: Build XZ for ${{ matrix.target }} | |
| run: | | |
| make XZ-${{ matrix.target }} | |
| - name: Build libFFI for ${{ matrix.target }} | |
| run: | | |
| make libFFI-${{ matrix.target }} | |
| - name: Build mpdecimal for ${{ matrix.target }} | |
| run: | | |
| make mpdecimal-${{ matrix.target }} | |
| - name: Build zstd for ${{ matrix.target }} | |
| run: | | |
| make zstd-${{ matrix.target }} | |
| - name: Build OpenSSL for ${{ matrix.target }} | |
| run: | | |
| make OpenSSL-${{ matrix.target }} | |
| - name: Upload Build Artifact | |
| uses: actions/[email protected] | |
| with: | |
| name: dist-${{ matrix.target }} | |
| path: dist | |
| if-no-files-found: error |