This repository has been archived by the owner on Feb 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
568 additions
and
891 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Quick Fabric Release | ||
on: | ||
push: | ||
tags: | ||
- '*-*' | ||
env: | ||
JAVA_VERSION: 17 # must be the same as the version used in build.gradle | ||
jobs: | ||
build-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Java | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: ${{ env.JAVA_VERSION }} | ||
- name: Build | ||
id: build | ||
run: | | ||
chmod +x ./gradlew | ||
./gradlew clean build | ||
- name: Release | ||
uses: Kir-Antipov/mc-publish@v3.3 | ||
with: | ||
modrinth-id: 7q8r8AtY | ||
modrinth-token: ${{ secrets.MODRINTH_AUTHORIZATION_TOKEN }} | ||
curseforge-id: 372888 | ||
curseforge-token: ${{ secrets.CURSEFORGE_UPLOAD_TOKEN }} | ||
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
|
||
java: ${{ env.JAVA_VERSION }} | ||
version: ${{ steps.build.outputs.version }} | ||
game-versions: ${{ steps.build.outputs.game_versions }} | ||
files: ${{ steps.build.outputs.files }} | ||
name: ${{ steps.build.outputs.release_name }} | ||
|
||
github-tag: ${{ github.ref_name }} |
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 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 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
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.