From d8faf74be5e9444ab0db2d4f65838e8883bd3521 Mon Sep 17 00:00:00 2001 From: Cameron Welter Date: Mon, 27 Feb 2023 19:46:51 -0500 Subject: [PATCH] chore: always run release job on workflow_dispatch events --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d2b8dda..78ccca3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ on: jobs: release: runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'success' }} + if: github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' steps: - name: Checkout uses: actions/checkout@v3