We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 582d8fc commit d169e06Copy full SHA for d169e06
1 file changed
.github/workflows/gradle.yml
@@ -22,8 +22,14 @@ jobs:
22
USERNAME: ${{secrets.USERNAME}}
23
TOKEN: ${{secrets.TOKEN}}
24
RELEASE_VERSION: ${{github.run_number}}
25
- - name: Upload artifacts
26
- uses: actions/upload-artifact@v3
27
- with:
28
- name: build-artifacts
29
- path: build/libs/DiscordBot.jar
+
+ create-release:
+ runs-on: ubuntu-latest
+ permissions:
30
+ contents: write
31
+ steps:
32
+ - uses: actions/checkout@v2
33
+ - uses: ncipollo/release-action@v1
34
+ with:
35
+ artifacts: "./build/libs/DiscordBot.jar"
0 commit comments