From d31eb6f9c83f038e0008c1d11e9fa6ca4fa9a7b6 Mon Sep 17 00:00:00 2001 From: restitux Date: Thu, 27 Nov 2025 20:22:04 -0700 Subject: [PATCH] container time? --- .gitea/workflows/test.yaml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 2cc97a0..dff6d6a 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -19,14 +19,23 @@ # only: # - branches -name: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +name: Build dioxus container on: [push] jobs: TestStage: runs-on: ubuntu-latest steps: - - run: echo "foo" - - run: echo "bar" - - run: echo "baz" > foo + - name: Login to gitea docker registry + uses: docker/login-action@v3 + with: + registry: git.ohea.xyz + username: ${{ secrets.CI_REGISTRY_USER }} + password: ${{ secrets.CI_REGISTRY_PASSWORD }} + - name: Build and push dioxus base container + uses: docker/build-push-action@v6 + with: + context: . + file: docker/Dockerfile + push: true + tags: "git.ohea.xyz/mumble/mumbleweb2/dioxus-build:latest"