Skip to content

Add GitHub Actions workflow for Docker image (#34) #1

Add GitHub Actions workflow for Docker image (#34)

Add GitHub Actions workflow for Docker image (#34) #1

name: Publish blrchen/chatgpt-lite
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build_and_push_image:
name: Push image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: blrchen/chatgpt-lite
- name: Build and push multi-arch image
uses: docker/build-push-action@v4
with:
context: ./chatgpt-lite
file: chatgpt-lite/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}