From ccf125ed9109e9736af4293a9e1e2a076b6120b2 Mon Sep 17 00:00:00 2001 From: "Mohamed C." Date: Thu, 12 Feb 2026 16:03:42 +0100 Subject: [PATCH] try workflow with local runner --- .gitea/workflows/bluebuild.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/bluebuild.yml diff --git a/.gitea/workflows/bluebuild.yml b/.gitea/workflows/bluebuild.yml new file mode 100644 index 0000000..d6128f9 --- /dev/null +++ b/.gitea/workflows/bluebuild.yml @@ -0,0 +1,22 @@ +name: bluebuild +on: + schedule: + - cron: "00 00 * * *" + push: + paths-ignore: + - "**.md" + workflow_dispatch: + +jobs: + bluebuild: + name: Build Custom Image + runs-on: ubuntu-latest + steps: + - name: Build Custom Image + uses: blue-build/github-action@v1.11 + with: + recipe: ${{ matrix.recipe }} + cosign_private_key: ${{ secrets.SIGNING_SECRET }} + registry_token: ${{ github.token }} + # Some Gitea versions prefer: + # registry_token: ${{ secrets.GITHUB_TOKEN }}