-
Notifications
You must be signed in to change notification settings - Fork 48
71 lines (60 loc) · 1.76 KB
/
images.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Build and Publish Docker Images
on:
workflow_dispatch:
push:
branches:
- main
paths:
- docker/**
- .github/workflows/images.yaml
schedule:
- cron: "0 0 * * *"
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
publish:
strategy:
fail-fast: true
matrix:
image_flavor: [cpu, cuda, cuda-ort, rocm]
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
id-token: write
steps:
- name: Free Disk Space
uses: jlumbroso/free-disk-space@main
- name: Checkout code
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker images
id: meta
uses: docker/metadata-action@v5
with:
flavor: |
latest=false
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest-${{ matrix.image_flavor }}
type=raw,value=sha-${{ github.sha }}-${{ matrix.image_flavor }}
- name: Build and push Docker images
uses: docker/build-push-action@v5
id: push
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: docker/${{ matrix.image_flavor }}/Dockerfile
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest-${{ matrix.image_flavor }}