From 7053ea901d34181625506c50d7e1ee87bec597cf Mon Sep 17 00:00:00 2001 From: Penghe Geng Date: Fri, 3 Jan 2025 12:54:31 -0500 Subject: [PATCH] Use softprops/action-gh-release for release The previous `ncipollo/release-action` is not allowed in NVIDIA enterprise GitHub account --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ab830b..a4a0814 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -156,13 +156,12 @@ jobs: - name: Create GitHub Release if: startsWith(github.ref_name, 'rshim-') - uses: ncipollo/release-action@v1 + uses: softprops/action-gh-release@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - tag: ${{ github.ref_name }} + tag_name: ${{ github.ref_name }} name: ${{ github.ref_name }} body: ${{ steps.changelog.outputs.body }} draft: false prerelease: false - artifacts: | - dist/* + files: dist/*