diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9980d73..002159b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,6 +3,9 @@ on: tags: - "v*" +env: + GH_TOKEN: ${{ github.token }} + name: Release permissions: contents: write @@ -21,10 +24,6 @@ jobs: CROSS: "true" - name: release binaries - uses: softprops/action-gh-release@v2 - with: - files: | - dist/artifacts/* - - + run: | + gh release upload ${{ github.ref_name }} dist/artifacts/* \ No newline at end of file