-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (42 loc) · 1.32 KB
/
publish-docker-cuda.yml
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
name: Publish CUDA
on:
workflow_dispatch:
jobs:
push_to_registry:
name: Build image
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'cloud-py-api' }}
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Install xmlstarlet
run: sudo apt-get update && sudo apt-get install -y xmlstarlet
- name: Extract version from XML
id: extract_version
run: |
VERSION=$(xmlstarlet sel -t -v "//image-tag" appinfo/info.xml)
echo "VERSION=VERSION" >> $GITHUB_ENV
- name: Log version
run: |
echo "Extracted version: ${{ env.VERSION }}"
- name: Build container image
uses: docker/build-push-action@v5
with:
push: true
context: .
platforms: linux/amd64
file: Dockerfile
tags: ghcr.io/cloud-py-api/visionatrix-cuda:${{ env.VERSION }}
build-args: |
BUILD_TYPE=cuda