Skip to content

update dev build process #22

update dev build process

update dev build process #22

Workflow file for this run

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

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

View workflow run for this annotation

GitHub Actions / .github/workflows/build-image-dev.yml

Invalid workflow file

invalid value workflow reference: no version specified
with:
context: "mlflow-server"
package: mlflow
build:
uses: ./.github/workflows/workflow-build-image.yaml
needs: get-version
with:
registry: quay.io/troyer
image-name: mlflow-server
context: "mlflow-server"
version: ${{ needs.get-version.outputs.package-version }}
tag-suffix: "-dev"
secrets:
registry-username: ${{ secrets.QUAY_USERNAME }}
registry-password: ${{ secrets.QUAY_PASSWORD }}