From 581b12c87f428b9bedb02d4e551af24f90f174af Mon Sep 17 00:00:00 2001 From: Jason Pickens <jasonpickensnz@gmail.com> Date: Fri, 11 Apr 2025 02:56:56 +1200 Subject: [PATCH] chore: simplify ref_type test (#598) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index dd542e5..6e0622a 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@v4 - name: Release uses: softprops/action-gh-release@v2 - if: startsWith(github.ref, 'refs/tags/') + if: github.ref_type == 'tag' ``` You can also use push config tag filter @@ -106,7 +106,7 @@ jobs: run: cat Release.txt - name: Release uses: softprops/action-gh-release@v2 - if: startsWith(github.ref, 'refs/tags/') + if: github.ref_type == 'tag' with: files: Release.txt ``` @@ -130,7 +130,7 @@ jobs: run: cat Release.txt - name: Release uses: softprops/action-gh-release@v2 - if: startsWith(github.ref, 'refs/tags/') + if: github.ref_type == 'tag' with: files: | Release.txt @@ -162,7 +162,7 @@ jobs: run: echo "# Good things have arrived" > ${{ github.workspace }}-CHANGELOG.txt - name: Release uses: softprops/action-gh-release@v2 - if: startsWith(github.ref, 'refs/tags/') + if: github.ref_type == 'tag' with: body_path: ${{ github.workspace }}-CHANGELOG.txt repository: my_gh_org/my_gh_repo