Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
qouteall committed Mar 19, 2023
1 parent 9a030e7 commit cc56399
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 39 deletions.
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Bug Report
description: File a bug report
body:
- type: markdown
attributes:
value: "To know whether it's a mod compatibility issue, please remove all other mods and keep only PortalGun and Immersive Portals and Fabric API, backup your world, and then test again whether the issue occurs. Thanks for cooperation."
- type: dropdown
id: only_immptl_and_portalgun
attributes:
label: According to your testing, does the issue occur with ONLY MiniScaled mod and Immersive Portals mod and Farbic API?
options:
- "Yes"
- "No"
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: Describe the issue
description: Please tell how to reproduce the issue.
value: "Describe the issue."
validations:
required: true
- type: textarea
id: logs
attributes:
label: Post the log here
description: The log is `latest.log` in `logs` folder in the game directory. The log provides useful information (including the mod list) for debugging the issue.
render: shell
34 changes: 34 additions & 0 deletions .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java#publishing-using-gradle

name: Gradle Package

on:
release:
types: [created]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 17
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file

- uses: eskatos/gradle-command-action@v1
with:
gradle-version: 7.3
arguments: build

- name: Upload assets to GitHub
uses: AButler/[email protected]
with:
files: 'build/libs/*'
repo-token: ${{ secrets.GITHUB_TOKEN }}
39 changes: 0 additions & 39 deletions .github/workflows/gradle.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,5 @@ run/
!gradle-wrapper.jar

remappedSrc/

compiler_output/

0 comments on commit cc56399

Please sign in to comment.