From d21f14d8515e8c87585988cbb16633f8a0d80501 Mon Sep 17 00:00:00 2001 From: amtoaer Date: Sat, 2 Dec 2023 00:30:47 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E6=8E=A8=E9=80=81=20main=20=E6=97=B6?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=20debug=20=E9=95=9C=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docker-image-debug.yml | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/docker-image-debug.yml diff --git a/.github/workflows/docker-image-debug.yml b/.github/workflows/docker-image-debug.yml new file mode 100644 index 0000000..e05c6ff --- /dev/null +++ b/.github/workflows/docker-image-debug.yml @@ -0,0 +1,29 @@ +name: Docker Image CI (DEBUG) + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v3 + - + name: Login to DockerHub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Build and push images + uses: docker/build-push-action@v5 + with: + context: . + file: ./Dockerfile + push: true + tags: | + ${{ secrets.DOCKERHUB_USERNAME }}/bili-sync:debug \ No newline at end of file