From 3cc62ef5abd35d2ca23baa1c7309f737057395c4 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Mon, 30 Sep 2024 16:14:15 -0700 Subject: [PATCH] Fix Workflow not working on trigger --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d021768..72f14c2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ jobs: release: name: Publish release JAR for Ex Deorum runs-on: ubuntu-latest - if: "startsWith(github.event.head_commit.message, '[Release]')" + if: "startsWith(github.event.head_commit.message, 'Release')" steps: - name: Checkout code uses: actions/checkout@v4