Skip to content

Add mount option only if not present #53

Add mount option only if not present

Add mount option only if not present #53

Workflow file for this run

name: dev
on:
push:
branches:
- feature/*
jobs:
build-base:
uses: ./.github/workflows/_build.yml
strategy:
matrix:
os: [ubuntu, fedora]
with:
image: ${{ github.actor }}/runner-krunvm-base-${{ matrix.os }}
file: Dockerfile.base.${{ matrix.os }}
platforms: linux/amd64
secrets:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
build-main:
needs:
- build-base
uses: ./.github/workflows/_build.yml
strategy:
matrix:
os: [ubuntu, fedora]
with:
image: ${{ github.actor }}/runner-krunvm-${{ matrix.os }}
file: Dockerfile
platforms: linux/amd64
build-args: |
VERSION=${{ needs.build-base.outputs.version }}
DISTRO=${{ matrix.os }}
secrets:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}