We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5536532 commit 98c6da1Copy full SHA for 98c6da1
1 file changed
.github/workflows/release.yml
@@ -19,15 +19,15 @@ jobs:
19
with:
20
java-version: 21
21
distribution: 'adopt'
22
- - name: Build and Publish to Modrinth
+ - name: Build
23
run: |
24
./gradlew build
25
- - name: Create a Release
26
- uses: elgohr/Github-Release-Action@c5ea99036abb741a89f8bf1f2cd7fba845e3313a # v5
27
- env:
28
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Release
+ uses: softprops/action-gh-release@v2
29
30
- title: Build ${{ github.run_number }}
31
- tag: ${{ github.run_number }}
32
- workdir: ./build/libs/
+ # Configuring release name and tag.
+ name: Build \#${{ github.run_number }}
+ tag_name: ${{ github.run_number }}
+ # Configuring files that are attached to the release.
+ files: "build/libs/LuaStubGen-1.0-SNAPSHOT.jar"
33
0 commit comments