Skip to content

set Docker CI of CUDA #1

set Docker CI of CUDA

set Docker CI of CUDA #1

Workflow file for this run

name: Docker CI of CUDA
on:
push:
tags:
- 'cuda-*'
jobs:
build-and-publish:
runs-on: ubuntu-latest
env:
IMAGE_NAME: docker-images
steps:
- name: Set Docker Image Name and Tag
id: system
run: |
TAG=${GITHUB_REF#refs/tags/}
IFS=- read -r IMAGE VERSION <<< $TAG
echo "image=$IMAGE" >> $GITHUB_OUTPUT
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Build and Push Image
uses: docker/build-push-action@v5
with:
context: ./os/
file: ./os/Dockerfile
platforms: |
linux/amd64
push: true
build-args: |
SYSTEM_IMAGE=nvidia/cuda
SYSTEM_VERSION=${{ steps.system.outputs.version }}
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/${{ env.IMAGE_NAME }}:${{ steps.system.outputs.image }}-${{ steps.system.outputs.version }}
- name: Update repo description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
repository: ${{ secrets.DOCKER_HUB_USERNAME }}/${{ env.IMAGE_NAME }}
short-description: ${{ github.event.repository.description }}
- name: Push Summary
run: echo "### Build ${{ steps.system.outputs.image }}-${{ steps.system.outputs.version }} Successfully :rocket:" >> $GITHUB_STEP_SUMMARY