Skip to content

Commit

Permalink
Build main image <= ubuntu+fedora
Browse files Browse the repository at this point in the history
  • Loading branch information
efrecon committed Mar 4, 2024
1 parent 2cd2255 commit dfcec9c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -8,9 +8,12 @@ on:
jobs:
build-base:
uses: ./.github/workflows/_build.yml
strategy:
matrix:
os: [ubuntu, fedora]
with:
image: ${{ github.actor }}/runner-krunvm-base
file: Dockerfile.base
image: ${{ github.actor }}/runner-krunvm-base-${{ matrix.os }}
file: Dockerfile.base.${{ matrix.os }}
secrets:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
@@ -19,11 +22,15 @@ jobs:
needs:
- build-base
uses: ./.github/workflows/_build.yml
strategy:
matrix:
os: [ubuntu, fedora]
with:
image: ${{ github.actor }}/runner-krunvm
image: ${{ github.actor }}/runner-krunvm-${{ matrix.os }}
file: Dockerfile
build-args: |
VERSION=${{ needs.build-base.outputs.version }}
DISTRO=${{ matrix.os }}
secrets:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit dfcec9c

Please sign in to comment.