Skip to content

Commit a4e63fa

Browse files
committed
fix: rename to Build and use matrix strategy to see platform
Signed-off-by: Denis Golovin <[email protected]>
1 parent 8ef3326 commit a4e63fa

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
jobs:
1818
build:
19-
name: ${{ inputs.runs-on }}
19+
name: Build
2020
runs-on: ${{ inputs.runs-on }}
2121
timeout-minutes: 60
2222
env:

.github/workflows/ci.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ on:
2323
- 'main'
2424

2525
jobs:
26-
build:
26+
CI:
27+
strategy:
28+
matrix:
29+
target: [ubuntu-20.04]
2730
uses: redhat-developer/podman-desktop-redhat-account-ext/.github/workflows/build.yaml@main
2831
with:
29-
runs-on: ubuntu-latest
32+
runs-on: ${{ matrix.target }}
3033
registry: 'ghcr'

0 commit comments

Comments
 (0)