init commit of working things
This commit is contained in:
commit
06a0ff2060
66 changed files with 1917 additions and 0 deletions
45
temp.github/ISSUE_TEMPLATE/bug_report.md
Normal file
45
temp.github/ISSUE_TEMPLATE/bug_report.md
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
---
|
||||
name: Bug report
|
||||
about: Report an issue of the mod crashing or behaving in an unexpected way
|
||||
title: ''
|
||||
labels: bug
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
---
|
||||
name: Bug report
|
||||
about: Report an issue of the mod crashing or behaving in an unexpected way
|
||||
title: ''
|
||||
labels: bug
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1. Singleplayer or multiplayer?
|
||||
2. Place block '....'
|
||||
3. Interact with '....'
|
||||
4. See error '...'
|
||||
|
||||
**Log files**
|
||||
Please post your log files (client and server) to gist and link them here.
|
||||
If it's a crash report, please also upload the crash report to gist and link it here.
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Screenshots**
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
**Versions (please complete the following information):**
|
||||
- Minecraft: [e.g. 1.18.2]
|
||||
- Forge: [e.g. 40.0.40]
|
||||
- oc2r: [e.g. 0.1.7]
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
||||
20
temp.github/ISSUE_TEMPLATE/feature_request.md
Normal file
20
temp.github/ISSUE_TEMPLATE/feature_request.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
||||
37
temp.github/workflows/build.yml
Normal file
37
temp.github/workflows/build.yml
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
name: build
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [ '**' ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
java: [ 17 ]
|
||||
os: [ ubuntu-latest, windows-latest ]
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK ${{ matrix.java }}
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: ${{ matrix.java }}
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Validate Gradle wrapper
|
||||
uses: gradle/wrapper-validation-action@v1
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
|
||||
restore-keys: ${{ runner.os }}-gradle-
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
env:
|
||||
GPR_USER: ${{ secrets.GPR_USER }}
|
||||
GPR_KEY: ${{ secrets.GPR_KEY }}
|
||||
101
temp.github/workflows/publish.yml
Normal file
101
temp.github/workflows/publish.yml
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
name: publish
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
publish-github:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Extract Version from Tag
|
||||
uses: rishabhgupta/split-by@v1
|
||||
id: split_tag
|
||||
with:
|
||||
string: ${{ github.event.release.tag_name }}
|
||||
split-by: '/'
|
||||
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 17
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Validate Gradle wrapper
|
||||
uses: gradle/wrapper-validation-action@v1
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
key: ubuntu-latest-gradle-${{ hashFiles('**/*.gradle*') }}
|
||||
restore-keys: ubuntu-latest-gradle-
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew -Psemver='${{ steps.split_tag.outputs._1 }}' build
|
||||
env:
|
||||
GPR_USER: ${{ secrets.GPR_USER }}
|
||||
GPR_KEY: ${{ secrets.GPR_KEY }}
|
||||
|
||||
- name: Add Artifacts to Github Release
|
||||
uses: alexellis/upload-assets@0.3.0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
with:
|
||||
asset_paths: '["./build/libs/*.jar"]'
|
||||
|
||||
- name: Publish to Github Packages
|
||||
run: gradle -Psemver='${{ steps.split_tag.outputs._1 }}' publish
|
||||
env:
|
||||
GPR_USER: ${{ secrets.GPR_USER }}
|
||||
GPR_KEY: ${{ secrets.GPR_KEY }}
|
||||
GITHUB_MAVEN_URL: 'https://maven.pkg.github.com/${{ github.repository }}'
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
publish-curse:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Extract Version from Tag
|
||||
uses: rishabhgupta/split-by@v1
|
||||
id: split_tag
|
||||
with:
|
||||
string: ${{ github.event.release.tag_name }}
|
||||
split-by: '/'
|
||||
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 17
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Validate Gradle wrapper
|
||||
uses: gradle/wrapper-validation-action@v1
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
key: ubuntu-latest-gradle-${{ hashFiles('**/*.gradle*') }}
|
||||
restore-keys: ubuntu-latest-gradle-
|
||||
|
||||
# Set Curseforge release type based on pre-release flag.
|
||||
- name: Set release type to 'release'
|
||||
run: |
|
||||
echo "CURSEFORGE_RELEASE_TYPE=release" >> $GITHUB_ENV
|
||||
if: github.event.release.prerelease == false
|
||||
- name: Set release type to 'alpha'
|
||||
run: |
|
||||
echo "CURSEFORGE_RELEASE_TYPE=alpha" >> $GITHUB_ENV
|
||||
if: github.event.release.prerelease == true
|
||||
|
||||
- name: Publish to Curseforge
|
||||
run: ./gradlew -Psemver='${{ steps.split_tag.outputs._1 }}' curseforge
|
||||
env:
|
||||
GPR_USER: ${{ secrets.GPR_USER }}
|
||||
GPR_KEY: ${{ secrets.GPR_KEY }}
|
||||
CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_KEY }}
|
||||
CURSEFORGE_RELEASE_TYPE: ${{ env.CURSEFORGE_RELEASE_TYPE }}
|
||||
CHANGELOG: ${{ github.event.release.body }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue