Remove artifact upload from build.yml

Removed artifact upload steps from build workflow.
This commit is contained in:
sebseb7
2026-04-20 22:50:23 +02:00
committed by GitHub
parent 0350d4b7f4
commit 2273146e10

View File

@@ -19,14 +19,6 @@ jobs:
- run: mkdir staging && cp build/libs/*.jar staging
- run: cd build/libs && md5sum *.jar > ../../md5sum.txt
- run: echo "filename=`ls build/libs/*.jar |xargs basename`" >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
with:
name: ${{ env.filename }}
path: staging
- uses: actions/upload-artifact@v3
with:
name: md5sum.txt
path: md5sum.txt
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')