From 1332baedaa34cb1a9661c132062903c3213b6c98 Mon Sep 17 00:00:00 2001 From: James Greenwood Date: Mon, 17 Nov 2025 08:41:57 +0000 Subject: [PATCH] add gitea image build --- .gitea/workflows/build.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 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..1c35fb1 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,21 @@ +name: build +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Login to Gitea container registry + uses: docker/login-action@v3 + with: + registry: code.jamey.stream + username: jamey + password: 2a9cdbe263f11b074db5bd195ff8991e306d5837 + - name: Checkout + uses: actions/checkout@v4 + - name: Build and push + uses: docker/build-push-action@v6 + with: + context: . + push: true + tags: code.jamey.stream/jamey/action-requests-demo.jamey.stream:${{ gitea.sha }}