Skip to content

ci: workflow to update tuf roots #51

ci: workflow to update tuf roots

ci: workflow to update tuf roots #51

Workflow file for this run

name: build
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'main'
pull_request:
jobs:
prepare:
runs-on: ubuntu-latest
outputs:
includes: ${{ steps.binary.outputs.matrix }}
steps:
-
name: Checkout
uses: actions/checkout@v6
-
name: Binary matrix
id: binary
uses: docker/bake-action/subaction/matrix@v6
with:
target: binary-all
fields: platforms
binary:
runs-on: ubuntu-latest
needs:
- prepare
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.prepare.outputs.includes) }}
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build
uses: docker/bake-action@v6
with:
targets: binary
set: |
*.platform=${{ matrix.platforms }}