From c312351ff5114ac9237682efb201d669f1f56d8d Mon Sep 17 00:00:00 2001 From: Walter Oggioni Date: Sat, 25 May 2024 19:50:05 +0800 Subject: [PATCH] added gitea build action --- .gitea/workflows/build.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..c18062b --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,28 @@ +name: CI +on: + push: + branches: [ master ] +jobs: + docker: + runs-on: woryzen + steps: + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Login to Docker Hub + uses: docker/login-action@v3 + with: + registry: gitea.woggioni.net + username: woggioni + password: ${{ secrets.PUBLISHER_TOKEN }} + - + name: Build and push jupyter-python image + uses: docker/build-push-action@v5.3.0 + with: + context: jupyter-python + push: true + tags: woggioni/jupyter-python:latest