Skip to content

ci: add docker build #1

ci: add docker build

ci: add docker build #1

Workflow file for this run

name: Build Docker Image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🐳 Login to GitHub Container Registry
uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🐳 Build and Push
uses: docker/build-push-action@v6.10.0
with:
provenance: false
platforms: linux/amd64
push: true
context: .
tags: ghcr.io/eduplanner-demo:latest