Container Build #1
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
# Copyright (C) 2024 Intel Corporation | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Container Build | |
permissions: read-all | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "35 1 * * 6" | |
jobs: | |
# https://github.com/intel/ai-containers/blob/main/.github/action.yml | |
build-containers: | |
runs-on: docker | |
env: | |
REGISTRY: ${{ secrets.REGISTRY }} | |
REPO: ${{ secrets.REPO }} | |
steps: | |
- uses: step-security/harden-runner@v2 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
path: tei-gaudi | |
ref: habana-main | |
repository: huggingface/tei-gaudi | |
token: ${{ secrets.ACTION_TOKEN }} | |
- uses: docker/login-action@v3 | |
with: | |
registry: ${{ secrets.REGISTRY }} | |
username: ${{ secrets.REGISTRY_USER }} | |
password: ${{ secrets.REGISTRY_TOKEN }} | |
- name: Build Containers | |
run: | | |
docker compose -p ${GITHUB_RUN_NUMBER} build --no-cache | |
working-directory: .github/workflows/docker | |
- name: Print Containers to Summary | |
run: | | |
docker compose -p ${GITHUB_RUN_NUMBER} images --format json | jq -r --arg registry "$REGISTRY" '.[] | select(.Repository | contains($registry)) | .Tag' >> $GITHUB_STEP_SUMMARY | |
- name: Push Containers | |
run: | | |
docker compose -p ${GITHUB_RUN_NUMBER} push | |
working-directory: .github/workflows/docker | |
- name: Un-Tag Containers | |
run: | | |
docker compose -p ${GITHUB_RUN_NUMBER} down --rmi all | |
working-directory: .github/workflows/docker | |
- name: Remove Containers | |
if: always() | |
run: docker system prune --all --force |