fetch: update libunibreak to 7.0 #18
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: Build & Upload Artifact | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - ".github/workflows/build.yml" | |
| - ".env" | |
| - "build-*" | |
| - "fetch" | |
| jobs: | |
| build: | |
| runs-on: macos-26 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| attestations: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Select Xcode | |
| run: | | |
| sudo xcode-select -s /Applications/Xcode_26.4.app | |
| xcodebuild -version | |
| - name: Create Stow Directory | |
| run: | | |
| sudo mkdir -p /opt/local | |
| sudo chown "$USER":admin /opt/local | |
| mkdir -p /opt/local/stow | |
| - name: Install Dependencies | |
| run: | | |
| brew update -q | |
| xargs brew install -q --formula < homebrew/build-deps.txt | |
| - name: Fetch Sources | |
| run: ./fetch all | |
| - name: Build & Install | |
| run: ./build-all --bundle | |
| env: | |
| MACOSX_DEPLOYMENT_TARGET: 26.4 | |
| - name: Print Summary | |
| run: | | |
| { | |
| echo '### mpv' | |
| echo '```' | |
| /opt/local/bin/mpv --version | |
| echo '```' | |
| } >> "${GITHUB_STEP_SUMMARY}" | |
| - name: Upload Artifact | |
| id: upload | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| path: mpv.tar.gz | |
| if-no-files-found: error | |
| archive: false | |
| - name: Attest Artifact | |
| uses: actions/attest-build-provenance@v4 | |
| with: | |
| subject-name: mpv.tar.gz | |
| subject-digest: sha256:${{ steps.upload.outputs.artifact-digest }} |