From 296c6e372064af712028e5f5b3e08fee3dda0418 Mon Sep 17 00:00:00 2001 From: Arnold Date: Sat, 11 May 2024 02:37:39 +0200 Subject: [PATCH] Updating workflows (#45) * updating workflows * another test for deployment workflow --- .github/workflows/deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index af0813b..a6a6fdd 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -11,7 +11,7 @@ on: jobs: deploy_after_master_push: runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' && github.event_name == 'push' && github.event.workflow_run.conclusion == 'success' + if: github.ref == 'refs/heads/master' && (github.event_name == 'push' || github.event.workflow_run.conclusion == 'success') steps: - name: Checkout Repository uses: actions/checkout@v2