From 839a4ecf35f807cd9896f59cbdc7706cf5a363b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Fr=C3=A9con?= Date: Fri, 9 Feb 2024 19:12:05 +0100 Subject: [PATCH] Add build main image --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index debafa6..7290186 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: - feature/build-two-images jobs: - build: + build-base: uses: ./.github/workflows/_build.yml with: image: ghcr.io/${{ github.actor }}/runner-krunvm-base @@ -15,3 +15,14 @@ jobs: secrets: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + + build-main: + needs: + - build-base + uses: ./.github/workflows/_build.yml + with: + image: ghcr.io/${{ github.actor }}/runner-krunvm + file: Dockerfile + secrets: + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }}