From 89b72a0a2b8fccdd729346dc0bab953ac03c6eee Mon Sep 17 00:00:00 2001 From: colinleefish Date: Mon, 23 Sep 2024 20:29:01 +0800 Subject: [PATCH] add github ci --- .github/workflows/docker-build-and-push.yml | 31 +++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/docker-build-and-push.yml diff --git a/.github/workflows/docker-build-and-push.yml b/.github/workflows/docker-build-and-push.yml new file mode 100644 index 0000000..2931620 --- /dev/null +++ b/.github/workflows/docker-build-and-push.yml @@ -0,0 +1,31 @@ +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