Skip to content

add github ci

add github ci #1

name: Build and Push Docker Image
on:
push:
branches:
- main # Change this to your default branch if different
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }} # GitHub username
token: ${{ secrets.GITHUB_TOKEN }} # Automatically provided by GitHub
- name: Build and Push Docker Image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:latest # Adjust the tag as needed