Skip to content

Commit

Permalink
Create actions-nvidia.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rishikanthc authored Oct 17, 2024
1 parent b2c7f50 commit c9122d7
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/actions-nvidia.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: ci-nvidia

on:
push:

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
file: ./Dockerfile.gpu
tags: |
ghcr.io/rishikanthc/scriberr:nightly-nvidia
- name: Verify multi-platform image
run: |
docker buildx imagetools inspect ghcr.io/rishikanthc/scriberr:nightly
- name: Push image to GHCR
run: |
docker buildx imagetools create \
ghcr.io/rishikanthc/scriberr:nightly-nvidia \
--tag ghcr.io/rishikanthc/scriberr:nightly-nvidia

0 comments on commit c9122d7

Please sign in to comment.