Skip to content

BUILD IMAGE

BUILD IMAGE #86

Workflow file for this run

name: BUILD IMAGE
on:
workflow_run:
workflows: ["CI"]
types:
- completed
branches:
- main
jobs:
build:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: ./server
file: ./server/Dockerfile
platforms: linux/amd64,linux/arm64/v8
push: true
tags: baealex/sd-prompt-palette:latest
cache-from: type=gha
cache-to: type=gha,mode=max