From 7b6df68b13c4aac85b414627ea4fef5436be21c7 Mon Sep 17 00:00:00 2001 From: shellingford330 Date: Thu, 11 Nov 2021 21:25:23 +0900 Subject: [PATCH] fix: release file path --- .github/workflows/gh-release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gh-release.yaml b/.github/workflows/gh-release.yaml index 841df69..2e1d895 100644 --- a/.github/workflows/gh-release.yaml +++ b/.github/workflows/gh-release.yaml @@ -3,13 +3,13 @@ on: branches: - main paths: - - '**/RELEASE' + - 'RELEASE' pull_request: types: [opened, synchronize] branches: - main paths: - - '**/RELEASE' + - 'RELEASE' jobs: gh-release: @@ -18,5 +18,5 @@ jobs: - uses: actions/checkout@v1 - uses: pipe-cd/actions-gh-release@v2.1.0 with: - release_file: '**/RELEASE' + release_file: 'RELEASE' token: ${{ secrets.GITHUB_TOKEN }}