Skip to content

add github actions to trigger workflow #26

add github actions to trigger workflow

add github actions to trigger workflow #26

Workflow file for this run

name: Build Image Dev
on:
workflow_dispatch: {}
push:
branches:
- '*'
- '!main'
paths:
- 'mlflow-server/**'
- '.github/**'
jobs:
get-version:
uses: ./.github/workflows/workflow-get-package-version.yaml
with:
context: "mlflow-server"
package: mlflow
build:
uses: ./.github/workflows/workflow-build-image.yaml

Check failure on line 21 in .github/workflows/build-image-dev.yml

View workflow run for this annotation

GitHub Actions / Build Image Dev

Invalid workflow file

The workflow is not valid. .github/workflows/build-image-dev.yml (Line: 21, Col: 11): Input base-image is required, but not provided while calling. .github/workflows/build-image-dev.yml (Line: 21, Col: 11): Input image-check is required, but not provided while calling.
needs: get-version
with:
registry: quay.io/troyer
image-name: mlflow-server
context: "mlflow-server"
version-tag: ${{ needs.get-version.outputs.package-version }}
tag-suffix: "-dev"
secrets:
registry-username: ${{ secrets.QUAY_USERNAME }}
registry-password: ${{ secrets.QUAY_PASSWORD }}