Version 1.3.0-beta1 (Fabric) (#17)

* [1.3.0-beta1] Update to 1.21.11

* Fix deploy workflow
This commit is contained in:
2025-12-10 18:21:53 +13:00
committed by GitHub
parent 80d34ab146
commit cdf5cd5d95
16 changed files with 40 additions and 70 deletions

View File

@@ -43,8 +43,8 @@ jobs:
- name: Create Release
run: |
mkdir dist
mv build/fabric/build/libs/*.jar dist
mv build/forge/build/libs/*.jar dist
shopt -s nullglob
mv build/{fabric,forge}/build/libs/*.jar dist/
pushd dist
shasum -a 256 * > checksums.txt
@@ -59,4 +59,8 @@ jobs:
--generate-notes
)
if [[ "$channel" == "alpha" || "$channel" == "beta" ]]; then
release_args+=( --prerelease )
fi
gh release create "${release_args[@]}" ./dist/*