Skip to content

Generate weekly menus with chatgpt #29

Generate weekly menus with chatgpt

Generate weekly menus with chatgpt #29

name: Docker Build & Publish Client latest
on:
push:
branches:
- main
jobs:
build-and-publish:
name: Build and Publish Docker Image (latest)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push client Docker Image
uses: docker/build-push-action@v5
with:
context: . # Path to your Dockerfile and other build context files
file: docker.client.Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
ghcr.io/${{ github.repository }}-client:latest
labels: |
org.opencontainers.image.source=https://github.com/bocabitlabs/${{ github.repository }}