From a437bad95bedf52c6191e7476c4140fcb239851b Mon Sep 17 00:00:00 2001 From: Sluijsens Date: Fri, 24 Jul 2026 15:27:54 +0200 Subject: [PATCH] Updates workflow to trigger on pull request merge to maste rinstead of main --- .gitea/workflows/continuous_integration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/continuous_integration.yaml b/.gitea/workflows/continuous_integration.yaml index 25ec1fe..74634d0 100644 --- a/.gitea/workflows/continuous_integration.yaml +++ b/.gitea/workflows/continuous_integration.yaml @@ -105,7 +105,7 @@ jobs: deploy: needs: [build, test] - if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main') + if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/master') uses: ./.gitea/workflows/deploy.yaml with: artifact_name: dist