Merge pull request #118 from MxEmerson/master #65
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: Docker Hub Release | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Docker | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Base Generate Tags | |
uses: docker/metadata-action@v4 | |
id: metadata | |
with: | |
images: | | |
${{ github.repository_owner }}/pallas-bot | |
tags: | | |
type=raw,value=latest | |
- name: Base Build and Publish | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: Dockerfile | |
push: true | |
tags: ${{ steps.metadata.outputs.tags }} | |
labels: ${{ steps.metadata.outputs.labels }} | |
- name: AI on GPU Generate Tags | |
uses: docker/metadata-action@v4 | |
id: gpuaimetadata | |
with: | |
images: | | |
misteo/pallas-bot | |
tags: | | |
type=raw,value=gpuai-latest | |
- name: AI on GPU Build and Publish | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: GPU.Dockerfile | |
push: true | |
tags: ${{ steps.gpuaimetadata.outputs.tags }} | |
labels: ${{ steps.gpuaimetadata.outputs.labels }} | |
- name: AI on CPU Generate Tags | |
uses: docker/metadata-action@v4 | |
id: cpuaimetadata | |
with: | |
images: | | |
misteo/pallas-bot | |
tags: | | |
type=raw,value=cpuai-latest | |
- name: AI on CPU Build and Publish | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: CPU.Dockerfile | |
push: true | |
tags: ${{ steps.cpuaimetadata.outputs.tags }} | |
labels: ${{ steps.cpuaimetadata.outputs.labels }} |