fix(docker): symlink GNU diff to override BusyBox on Alpine #96
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: | |
| push: | |
| branches: [master] | |
| paths: | |
| # Build system | |
| - 'platforms/**' | |
| - 'shared/**' | |
| - 'docker/**' | |
| # CI workflows that affect builds | |
| - '.github/workflows/ci.yml' | |
| - '.github/workflows/_build.yml' | |
| workflow_dispatch: | |
| # Cancel in-progress builds for same commit | |
| concurrency: | |
| group: build-${{ github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/_build.yml | |
| with: | |
| retention-days: 30 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| attestations: write |