From 508164cbcee183735016c3841219791729ca2c54 Mon Sep 17 00:00:00 2001 From: Blitblank Date: Sat, 28 Feb 2026 14:56:48 -0600 Subject: [PATCH] remove branch requirements for testing --- .gitea/workflows/deploy-api.yaml | 8 ++++---- .gitea/workflows/deploy-client.yaml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/deploy-api.yaml b/.gitea/workflows/deploy-api.yaml index c8ff7ce..5b45160 100644 --- a/.gitea/workflows/deploy-api.yaml +++ b/.gitea/workflows/deploy-api.yaml @@ -1,10 +1,10 @@ name: Build and Deploy API -on: - push: - branches: - - main +#on: +# push: +# branches: +# - main jobs: build-and-deploy: diff --git a/.gitea/workflows/deploy-client.yaml b/.gitea/workflows/deploy-client.yaml index 6405a22..6a68d7e 100644 --- a/.gitea/workflows/deploy-client.yaml +++ b/.gitea/workflows/deploy-client.yaml @@ -1,14 +1,14 @@ name: Build and Deploy Frontend -on: - push: - branches: - - main +#on: +# push: +# branches: +# - main jobs: build-and-deploy: - runs-on: docker + runs-on: debian12 steps: - uses: actions/checkout@v3