2023-03-26 20:26:31 +08:00
|
|
|
name: validate
|
|
|
|
|
2023-03-26 20:30:33 +08:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-03-26 20:26:31 +08:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '.github/*-releases.json'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
prepare:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
outputs:
|
2024-10-30 15:47:30 +08:00
|
|
|
targets: ${{ steps.generate.outputs.targets }}
|
2023-03-26 20:26:31 +08:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2023-09-05 06:40:48 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-03-26 20:26:31 +08:00
|
|
|
-
|
2024-10-30 15:47:30 +08:00
|
|
|
name: List targets
|
|
|
|
id: generate
|
|
|
|
uses: docker/bake-action/subaction/list-targets@v5
|
|
|
|
with:
|
|
|
|
target: validate
|
2023-03-26 20:26:31 +08:00
|
|
|
|
|
|
|
validate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs:
|
|
|
|
- prepare
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
target: ${{ fromJson(needs.prepare.outputs.targets) }}
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2023-09-05 06:40:48 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-03-26 20:26:31 +08:00
|
|
|
-
|
|
|
|
name: Validate
|
2024-06-18 06:54:54 +08:00
|
|
|
uses: docker/bake-action@v5
|
2023-03-26 20:26:31 +08:00
|
|
|
with:
|
|
|
|
targets: ${{ matrix.target }}
|