This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
Adds Configurable GPU Support (#37) #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AMD64 Dev Docker Image Build/Push | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
VERSION: dev | |
jobs: | |
push-dev-amd64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push images | |
run: | | |
make docker-build VERSION=$VERSION ARCH=amd64 | |
make docker-push VERSION=$VERSION ARCH=amd64 |