Explorar o código

#660 using alternative release action to trigger release event

Rodja Trappe %!s(int64=2) %!d(string=hai) anos
pai
achega
92f88d2848
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      .github/workflows/publish.yml

+ 2 - 2
.github/workflows/publish.yml

@@ -30,12 +30,12 @@ jobs:
           POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
         run: poetry publish --build
       - name: Create GitHub release entry
-        uses: actions/create-release@v1
+        uses: softprops/action-gh-release@v1
         id: create_release
         with:
           draft: false
           prerelease: false
-          release_name: ${{ env.VERSION }}
+          name: ${{ env.VERSION }}
           tag_name: ${{ env.VERSION }}
         env:
           GITHUB_TOKEN: ${{ github.token }}