Skip to content

Use a matrix

Use a matrix #80

Workflow file for this run

name: Build images 🔧
on:
pull_request:
jobs:
get-old-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract versions
run: |
docker run --name generic quay.io/kairos/framework:main_generic true || true
docker cp generic:/framework/etc/kairos/versions.yaml versions_generic.old.yaml
docker rm generic
docker run --name fips quay.io/kairos/framework:main_fips true || true
docker cp fips:/framework/etc/kairos/versions.yaml versions_fips.old.yaml
docker rm fips
- uses: actions/upload-artifact@v3
with:
name: old_versions.zip
path: |
versions_generic.old.yaml
versions_fips.old.yaml
build:
permissions:
id-token: write # OIDC support
contents: write
secrets: inherit
strategy:
fail-fast: false
matrix:
security_profile: [generic, fips]
uses: ./.github/workflows/reusable-build.yaml
with:
security_profile: ${{ matrix.security_profile }}
comment-pr:
runs-on: ubuntu-latest
permissions:
pull-requests: write
needs: [build, get-old-versions]
steps:
- uses: actions/checkout@v4
- name: Download versions
uses: actions/download-artifact@v3
with:
name: versions_generic.zip
- name: Download versions fips
uses: actions/download-artifact@v3
with:
name: versions_fips.zip
- name: Download old versions
uses: actions/download-artifact@v3
with:
name: old_versions.zip
- name: Generate PR text
run: |
.github/diffversions.sh
- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
comment_tag: bot-comment
filePath: pr-message