From 2a473f0fd75a616c8a1dbd35df0e6532aac1ce25 Mon Sep 17 00:00:00 2001 From: mustofa-id Date: Wed, 10 Jan 2024 13:33:28 +0700 Subject: [PATCH] fix: action `workflow_dispatch` event name --- .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 70fe44a..e1f9f14 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ concurrency: ${{ github.workflow }}-${{ github.ref }} jobs: release: # only run when pr merged & prevents from running on forks - if: (github.event.pull_request.merged == true || github.event.name == 'workflow_dispatch') && github.repository == 'ssecd/ihs' + if: (github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch') && github.repository == 'ssecd/ihs' runs-on: ubuntu-latest steps: - name: Checkout repo