SciCraft/.gitea/workflows/build-pack.yaml
MiTHRAL 4eaa9758ee
All checks were successful
Build & Release Pack / build (push) Successful in 1m42s
Ship single .mrpack release; drop CurseForge zip export
Users get one SCICRAFT-<tag>.mrpack to import into Prism Launcher.
Dropping the 362MB CurseForge zip eliminates the large-upload 502 that
failed release asset uploads. All 144 mods are bundled (32 CF jars in
overrides) or auto-fetched from Modrinth at import.
2026-08-19 16:20:31 -04:00

64 lines
No EOL
2.1 KiB
YAML

name: Build & Release Pack
on:
push:
branches: [main]
tags: ['v*']
jobs:
build:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install packwiz
run: go install github.com/packwiz/packwiz@latest
- name: Add packwiz to PATH
run: echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
- name: Refresh index
working-directory: client_pack
run: packwiz refresh
- name: Integrity check
working-directory: client_pack
run: python3 ../tools/validate_pack.py . integrity
- name: Sanity grep download URLs
working-directory: client_pack
run: python3 ../tools/validate_pack.py . sanity
- name: Export Modrinth pack
working-directory: client_pack
run: packwiz modrinth export -o ../SCICRAFT-${GITHUB_REF_NAME}.mrpack --restrictDomains=false
- name: Upload pack artifact
uses: actions/upload-artifact@v3
with:
name: scicraft-pack
path: |
SCICRAFT-${GITHUB_REF_NAME}.mrpack
- name: Release
if: startsWith(github.ref, 'refs/tags/v')
run: |
set -e
TAG="${GITHUB_REF_NAME}"
API="https://git.mithraic.cloud/api/v1/repos/ad3laid3/SciCraft/releases"
AUTH="Authorization: token ${{ secrets.GITHUB_TOKEN }}"
RELEASE_JSON=$(curl -sS -X POST "$API" \
-H "$AUTH" \
-H "Content-Type: application/json" \
-d "{\"tag_name\":\"$TAG\",\"name\":\"SCICRAFT $TAG\",\"body\":\"Download the .mrpack and import it into Prism Launcher (File > Import Instance > select the file). All mods are bundled or auto-fetched.\"}")
RELEASE_ID=$(printf '%s' "$RELEASE_JSON" | python3 -c "import sys,json; print(json.load(sys.stdin)['id'])")
curl -sS -X POST "$API/$RELEASE_ID/assets?name=SCICRAFT-${TAG}.mrpack" \
-H "$AUTH" \
-F "attachment=@SCICRAFT-${TAG}.mrpack"
echo "Uploaded SCICRAFT-${TAG}.mrpack"