From 7c1afd6581bf765a5ac84ca00c820a3eebe3b7f7 Mon Sep 17 00:00:00 2001 From: wd0517 Date: Tue, 16 Apr 2024 12:50:48 +0800 Subject: [PATCH 1/2] add github action to build docker image --- .github/workflows/build-image.yml | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/build-image.yml diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml new file mode 100644 index 000000000..d7764ac19 --- /dev/null +++ b/.github/workflows/build-image.yml @@ -0,0 +1,35 @@ +name: Build and Push Docker Image + +on: + pull_request: + push: + branches: + - refactor + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v4 + - + name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: ./Dockerfile + push: true + tags: | + ${{ secrets.DOCKERHUB_USERNAME }}/tidb.ai:latest + ${{ secrets.DOCKERHUB_USERNAME }}/tidb.ai:${{ github.sha }} From a9e6dc4da0404cce8ae7240d4aa08dbe96c795d6 Mon Sep 17 00:00:00 2001 From: wd0517 Date: Tue, 16 Apr 2024 12:53:19 +0800 Subject: [PATCH 2/2] debug action --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9355debae..3aaf5dc5a 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,6 @@ For deploying the application to Vercel, you can use the 'Deploy to Vercel' butt * Adapt the system for AWS Redrock Claude3, with an anticipated completion date of April 15th. * Finalize the "How It Works" series of documentation by April 30th. - ## License + TiDB.AI is open-source under the Apache License, Version 2.0. You can [find it here](/LICENSE.txt).