From 51410053189b43be20164b4a33f0a6e1bc13dcca Mon Sep 17 00:00:00 2001 From: Jermiah Joseph Date: Sat, 16 Dec 2023 13:29:54 -0500 Subject: [PATCH] fix(gha): fix CD to activate on pull too --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 05c4f76..0383990 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,7 +43,7 @@ jobs: Continuous-Development: needs: Continuous-Integration - if: github.event_name == 'push' && github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' # github.event_name == 'push' && runs-on: ubuntu-latest