Skip to content

Add build main image #13

Add build main image

Add build main image #13

Workflow file for this run

name: ci
on:
push:
branches:
- main
- feature/build-two-images
jobs:
build-base:
uses: ./.github/workflows/_build.yml
with:
image: ghcr.io/${{ github.actor }}/runner-krunvm-base
file: Dockerfile.base
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 }}