diff options
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37b5140..b048e5b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,7 @@ jobs: name: Checkout repository with: fetch-tags: true + fetch-depth: 0 - name: Set up JDK 21 uses: actions/setup-java@v4 with: @@ -29,9 +30,10 @@ jobs: uses: actions/upload-artifact@v3 with: path: build/libs/Firmament-*.jar - - name: Move build artifact around + - name: Move build artifact around and print check sum run: | rm -f build/libs/*sources*.jar + sha256sum build/libs/*.jar - name: Upload to discord run: | curl "$WEBHOOK_URL" -X POST -H "Content-type: multipart/form-data" --form "files[0]=@$(echo build/libs/*.jar)" |