From 7dcbf4db49a3d6f193602148577bfa8a898d3157 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Wed, 4 Jun 2025 10:40:42 -0700 Subject: [PATCH] Allow rerunning workflows --- .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 86357645..a32e244d 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: "contains(github.event.head_commit.message, '[Release]') || github.event_name == 'workflow_dispatch'" steps: - name: Checkout code uses: actions/checkout@v4