We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e68f572 commit 71aaa3aCopy full SHA for 71aaa3a
1 file changed
.github/workflows/release.yml
@@ -50,10 +50,9 @@ jobs:
50
changelog: |
51
See [GitHub Release](${{ github.event.release.html_url }}) for changelog.
52
53
- - name: Upload Jar to GitHub Release
54
- uses: actions/upload-release-asset@v1
+ - name: Upload to release
+ uses: softprops/action-gh-release@v1
55
with:
56
- upload_url: ${{ github.event.release.upload_url }}
57
- asset_path: ${{ steps.artifact.outputs.jar_path }}
58
- asset_name: MinecraftServerAPI-${{ steps.artifact.outputs.version }}.jar
59
- asset_content_type: application/java-archive
+ files: target/MinecraftServerAPI-*.jar
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments