add docker ci

This commit is contained in:
tuna2134
2024-09-11 05:06:46 +00:00
parent e69bf27448
commit fe9d3f2ae2

35
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,35 @@
name: Push to github container register
on:
release:
types: [created]
jobs:
push-docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
tag: [cpu, cuda]
steps:
- 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 GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository }}:${{ matrix.tag }}
file: docker/${{ matrix.tag }}.Dockerfile