From 7891ded64bfa81774bc28987dd49b26ef5a35567 Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Wed, 23 Apr 2025 12:28:14 +0200 Subject: [PATCH] Try different event names --- .gitea/workflows/workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/workflow.yml b/.gitea/workflows/workflow.yml index c2d1913..294f6c9 100644 --- a/.gitea/workflows/workflow.yml +++ b/.gitea/workflows/workflow.yml @@ -48,7 +48,7 @@ jobs: name: Check if rebuild is necessary runs-on: ubuntu-amd64 needs: update - if: ${{ github.event_name == 'schedule' }} + if: gitea.event_name == 'schedule' container: image: gitea.seeseepuff.be/archlinux/archlinux:latest steps: @@ -72,7 +72,7 @@ jobs: needs: check container: image: gitea.seeseepuff.be/archlinux/archlinux:latest - if: ${{ github.event_name == 'push' }} + if: gitea.event_name == 'push' steps: - name: Checkout code uses: actions/checkout@v2