From dafc6839d7fef3df6cc3ce6d0e89a2c4d310819e Mon Sep 17 00:00:00 2001 From: Kresna Satya Date: Tue, 5 Mar 2024 15:27:50 +0800 Subject: [PATCH] fix typo that make upload to GitHub release skipped --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ce98f8..effeb4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,6 @@ jobs: path: released - name: Upload to GitHub Release uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'ref/tags/') + if: startsWith(github.ref, 'refs/tags/') with: - files: released/*.jar - tag_name: ${{ github.ref }} \ No newline at end of file + files: released/*.jar \ No newline at end of file