This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
-
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.
- Loading branch information
Showing
17 changed files
with
157 additions
and
143 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,49 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
Before proceeding, please make sure to do this first. 📋 | ||
- Ensure you are running the **latest** version of the mod. | ||
- A similar issue hasn't been filled before. | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
value: "A bug happened!" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Screenshots | ||
description: If applicable, add screenshots to help explain your problem. | ||
validations: | ||
required: false | ||
- type: input | ||
attributes: | ||
label: Logs | ||
description: | | ||
If available, add logs to help identify your problem. | ||
Please upload your log to [Github Gist](https://gist.github.com/), [mslo.gs](https://mclo.gs/) or any other pasting platform. | ||
validations: | ||
required: false | ||
- type: input | ||
id: mod-version | ||
attributes: | ||
label: Mod Version | ||
description: What version of the mod are you running? | ||
validations: | ||
required: true | ||
- type: input | ||
id: mc-version | ||
attributes: | ||
label: Minecraft Version | ||
description: What version of Minecraft are you running? | ||
validations: | ||
required: true |
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Suggesting Ideas | 💡 | ||
url: https://github.com/constellation-mc/recipe_book_is_pain/discussions/categories/ideas | ||
about: If you have a suggestion, please post it here. Be sure to check pinned to see how to make a good suggestion! |
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,41 @@ | ||
name: Crash Report | ||
description: File a crash report | ||
title: "[Crash]: " | ||
labels: ["crash"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this crash report! | ||
Before proceeding, please make sure to do this first. 📋 | ||
- Ensure you are running the **latest** version of the mod. | ||
- A similar report hasn't been filled before. | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Please explain in detail how this crash happened. | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Logs | ||
description: | | ||
`latest.log` or `crash-20xx-xx-xx_xx.xx.xx-(client/server).log`. | ||
Please upload your log to [Github Gist](https://gist.github.com/), [mslo.gs](https://mclo.gs/) or any other pasting platform. | ||
validations: | ||
required: true | ||
- type: input | ||
id: mod-version | ||
attributes: | ||
label: Mod Version | ||
description: What version of the mod are you running? | ||
validations: | ||
required: true | ||
- type: input | ||
id: mc-version | ||
attributes: | ||
label: Minecraft Version | ||
description: What version of Minecraft are you running? | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,43 @@ | ||
|
||
name: publish | ||
on: [workflow_dispatch] | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version_type: | ||
description: "The type of this version. e.g alpha" | ||
type: choice | ||
default: beta | ||
options: | ||
- release | ||
- beta | ||
- alpha | ||
required: false | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout repository | ||
uses: actions/checkout@v3.4.0 | ||
uses: actions/checkout@v4.1.1 | ||
- name: validate gradle wrapper | ||
uses: gradle/wrapper-validation-action@v1 | ||
uses: gradle/wrapper-validation-action@v2.1.1 | ||
- name: setup jdk 17 | ||
uses: actions/setup-java@v3.10.0 | ||
uses: actions/setup-java@v4.1.0 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 17 | ||
- name: make gradle wrapper executable | ||
run: chmod +x ./gradlew | ||
- name: build | ||
run: ./gradlew build | ||
- name: Retrieve Version #https://stackoverflow.com/questions/71089787/how-to-get-version-name-from-android-gradle-file-in-github-actions | ||
- name: retrieve version #https://stackoverflow.com/questions/71089787/how-to-get-version-name-from-android-gradle-file-in-github-actions | ||
run: | | ||
echo "VERSION_INFORMATION=$(${{github.workspace}}/gradlew -q printVersionName)" >> $GITHUB_ENV | ||
echo "VERSION_PLAIN=$(${{github.workspace}}/gradlew -q printVersion)" >> $GITHUB_ENV | ||
- name: Publish Minecraft Mods | ||
uses: Kir-Antipov/[email protected] | ||
- name: publish minecraft mods | ||
uses: Kir-Antipov/[email protected].0 | ||
with: | ||
version-type: release | ||
version-type: ${{ inputs.version_type }} | ||
changelog-file: CHANGELOG.md | ||
name: ${{ env.VERSION_INFORMATION }} | ||
version: ${{ env.VERSION_PLAIN }} | ||
|
@@ -36,19 +48,17 @@ jobs: | |
loaders: | | ||
fabric | ||
github-tag: v${{ env.VERSION_PLAIN }} | ||
java: | | ||
17 | ||
github-tag: ${{ env.VERSION_PLAIN }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
github-commitish: ${{ github.sha }} | ||
github-prerelease: false | ||
|
||
modrinth-id: etNS9OnA | ||
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | ||
modrinth-featured: true | ||
modrinth-unfeature-mode: subset | ||
modrinth-dependencies: | | ||
dark-matter(embedded) | ||
curseforge-id: 643246 | ||
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} | ||
curseforge-dependencies: | | ||
dark-matter(embedded) |
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
33 changes: 0 additions & 33 deletions
33
src/main/java/me/melontini/recipebookispain/FeatureMultiverse.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.