From 30645bb4b513a3fe020f10b94e94cc9bfe4a8a0f Mon Sep 17 00:00:00 2001 From: Garen Tyler Date: Fri, 11 Apr 2025 14:08:47 -0600 Subject: [PATCH] Add bake workflow --- .gitea/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..59a9263 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,18 @@ +name: ci + +on: + push: + +jobs: + bake: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - + - name: Build and push images in bake file + uses: docker/bake-action@v6 + with: + push: false +