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 }}