fix(api): Change default GPU Request value and prevent null values fr… #1941
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: External Dependencies CI Workflow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
publish-mlflow-docker: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build and push MLflow Docker image | |
uses: docker/build-push-action@v1 | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
registry: ghcr.io | |
repository: caraml-dev/mlflow | |
path: mlflow | |
dockerfile: mlflow/Dockerfile | |
build_args: MLFLOW_VERSION=1.3.0 | |
tags: 1.3.0 |