Skip to content

Commit 6ecb872

Browse files
committed
Don't include licence in releases
It's already within the source code and the jars, there's really no need to include it within the release files too.
1 parent 83720e6 commit 6ecb872

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

.github/workflows/latest.yml

-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,4 @@ jobs:
3232
prerelease: true
3333
title: "Latest Build"
3434
files: |
35-
LICENSE.txt
3635
dist/*.jar

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525

2626
- name: "Publishing CivModern"
2727
run: |
28-
gh release upload ${{ github.event.release.tag_name }} "LICENSE.txt" --clobber
2928
for file in $(find "dist/" -maxdepth 1 -type f -name "*.jar"); do
3029
echo "Uploading $file"
3130
gh release upload ${{ github.event.release.tag_name }} "$file" --clobber

0 commit comments

Comments
 (0)