We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9173538 commit 4a34019Copy full SHA for 4a34019
.github/workflows/release.yml
@@ -28,11 +28,14 @@ jobs:
28
29
- name: Build
30
run: ./gradlew build
31
+
32
+ - name: Delete sources file
33
+ run: rm -f build/lib/discordwebhook-*-sources.jar
34
35
- name: Create GitHub Release
36
uses: softprops/action-gh-release@v2
37
with:
38
tag_name: ${{ github.ref_name }}
- files: build/libs/discordwebhook-[0-9]*.jar
39
+ files: build/libs/discordwebhook-*.jar
40
env:
41
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments