From 7ad7461a92a1f0983d610a0a5540789d36a28494 Mon Sep 17 00:00:00 2001 From: boojack Date: Thu, 24 Nov 2022 20:54:22 +0800 Subject: [PATCH] chore: add test docker image (#559) --- .../workflows/build-and-push-test-image.yml | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/build-and-push-test-image.yml diff --git a/.github/workflows/build-and-push-test-image.yml b/.github/workflows/build-and-push-test-image.yml new file mode 100644 index 00000000..b70dff3f --- /dev/null +++ b/.github/workflows/build-and-push-test-image.yml @@ -0,0 +1,36 @@ +name: build-and-push-test-image + +on: + push: + branches: [main] + +jobs: + build-and-push-release-image: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: neosmemo + password: ${{ secrets.DOCKER_NEOSMEMO_TOKEN }} + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v2 + with: + install: true + + - name: Build and Push + id: docker_build + uses: docker/build-push-action@v3 + with: + context: ./ + file: ./Dockerfile + platforms: linux/amd64 + push: true + tags: neosmemo/memos:test