Skip to content

Update cuda for H200 (#3) #20

Update cuda for H200 (#3)

Update cuda for H200 (#3) #20

Workflow file for this run

name: Build and push Docker image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v5
id: meta
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=sha,prefix=
type=raw,value=latest
- uses: docker/build-push-action@v6
with:
context: .
file: app/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}