Merge pull request #804 from docker/bot/compose-releases-json #1896
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 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| paths-ignore: | |
| - '.github/*-releases.json' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node_version: | |
| - 24 | |
| - 20 | |
| - 18 | |
| steps: | |
| - | |
| name: Build | |
| uses: docker/bake-action@v6 | |
| with: | |
| targets: build | |
| env: | |
| NODE_VERSION: ${{ matrix.node_version }} |