2023-11-29 21:24:47 +00:00
|
|
|
name: Build website container
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build image
|
|
|
|
runs-on: ubuntu-latest
|
2024-01-16 01:00:33 +00:00
|
|
|
container: ghcr.io/catthehacker/ubuntu:act-latest@sha256:8583ed2b7d097609ff91cc914696324ee945ceb8639967759f4cebbfcb8e63a5
|
2023-11-29 21:24:47 +00:00
|
|
|
env:
|
|
|
|
IMAGE_NAME: mlflow
|
|
|
|
REGISTRY: git.namesny.com
|
|
|
|
REPO_OWNER: cluster
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Login to Registry
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
registry: git.namesny.com
|
|
|
|
username: ${{ gitea.actor }}
|
|
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
|
|
- name: Build and push
|
|
|
|
run: |
|
|
|
|
VERSION=$(cat requirements.txt | grep mlflow | cut -d'=' -f3)
|
2024-01-05 10:55:25 +00:00
|
|
|
TODAY=$(date +'%Y-%m-%d')
|
|
|
|
docker build -t ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:${VERSION}-${TODAY} -t ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:latest .
|
|
|
|
docker push ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:${VERSION}-${TODAY}
|
2023-11-29 21:24:47 +00:00
|
|
|
docker push ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:latest
|
|
|
|
|