Iris 1.7.2 for Minecraft 1.20.1 #153
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Brachyra | |
# For more information see: docs/development/brachyura.md | |
name: Release script | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: false | |
- name: Run build with Gradle Wrapper | |
run: ./gradlew build -Dbuild.release=true | |
- name: Upload artifacts to Modrinth and GitHub | |
uses: Kir-Antipov/[email protected] | |
with: | |
modrinth-id: YL57xq9U | |
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | |
modrinth-featured: true | |
curseforge-id: 455508 | |
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
files: build/libs/!(*-@(dev|sources|all)).jar | |
version-type: release | |
loaders: fabric quilt | |
dependencies: sodium | |
version-resolver: latest # Defaults to selecting the latest compatible version of Minecraft, using the tag from the fabric.mod.json |