generated from architectury/architectury-example-mod
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## BetterF3 v1.3.3 for Minecraft 1.19.1/2
Published 2022-09-13 ### Added * In-Game Tick Display [#98](cominixo/BetterF3#98) * Automatically opening the profiler and TPS graphs [#9](cominixo/BetterF3#9) * Changelogs to the documentation * Added an option to hide the bossbar ### Updated * GitHub Workflow ### Fixed * Maximum FPS does not display [#102](cominixo/BetterF3#102) * Info colors can't change [#101](cominixo/BetterF3#101) * Left Module Background Cut Off [#94](cominixo/BetterF3#94) * String error [#106](cominixo/BetterF3#106) Full Changelog: [`v1.3.2...v1.3.3`](cominixo/BetterF3@v1.3.2...v1.3.3)
- Loading branch information
Showing
36 changed files
with
901 additions
and
207 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 |
---|---|---|
@@ -1,35 +1,78 @@ | ||
name: "Build the project" # Builds the project and archives the checkstyle results | ||
on: [pull_request, push] | ||
name: Build BetterF3 | ||
# Builds the project and archives the checkstyle results | ||
|
||
on: | ||
pull_request: | ||
push: | ||
paths-ignore: | ||
- 'docs/**' | ||
- 'README.md' | ||
- 'LICENSE.txt' | ||
- 'CONTRIBUTING.md' | ||
workflow_dispatch: | ||
inputs: | ||
release: | ||
description: Publish a Release | ||
required: true | ||
default: false | ||
type: boolean | ||
|
||
jobs: | ||
build: | ||
name: "Build" | ||
name: Build the Project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout this repository" | ||
- name: Checkout this repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: "Setup Java 17" | ||
- name: Setup Java 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- name: "Check gradle validation" | ||
- name: Check gradle validation | ||
uses: gradle/wrapper-validation-action@v1 | ||
|
||
- name: "Make Gradle Wrapper executable" | ||
- name: Make Gradle Wrapper executable | ||
run: chmod +x ./gradlew | ||
|
||
- name: "Build with Gradle" | ||
run: ./gradlew build | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: build | ||
|
||
- name: Setup Environment Variables | ||
run: | | ||
cat $GITHUB_WORKSPACE/gradle.properties | grep ^supported_minecraft_versions >> $GITHUB_ENV | ||
cat $GITHUB_WORKSPACE/gradle.properties | grep ^minecraft_version >> $GITHUB_ENV | ||
cat $GITHUB_WORKSPACE/gradle.properties | grep ^mod_version >> $GITHUB_ENV | ||
echo "package_name=BetterF3-${{ env.mod_version }}-mc${{ env.minecraft_version }}" >> $GITHUB_ENV | ||
- name: "Archives Checkstyle results" | ||
uses: "actions/upload-artifact@v2" | ||
- name: Archives Results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: "test-results" | ||
name: ${{ env.package_name }} | ||
path: | | ||
build/reports/ | ||
**/build/reports/ | ||
build/libs | ||
**/build/libs/ | ||
**/build/libs/ | ||
- name: Release Version to GitHub | ||
uses: softprops/action-gh-release@v1 | ||
if: ${{ github.event.inputs.release }} | ||
with: | ||
body_path: $GITHUB_WORKSPACE/build/CHANGELOG.md | ||
files: | | ||
**/build/libs/BetterF3-*-*-*.jar | ||
- name: Release Version to 3rd Parties | ||
uses: gradle/gradle-build-action@v2 | ||
if: ${{ github.event.inputs.release }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CURSE_API_KEY: ${{ secrets.CURSE_API_KEY }} | ||
MODRINTH_API_KEY: ${{ secrets.MODRINTH_API_KEY }} | ||
with: | ||
arguments: publish publishUnified |
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
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
Oops, something went wrong.