Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
6202c022ed | |||
77371021ea | |||
601d1204e9 | |||
bad0307e17 | |||
ed8efe69b6 |
4 changed files with 17 additions and 6 deletions
|
@ -18,6 +18,11 @@ jobs:
|
||||||
- name: ⏬ Checkout repository
|
- name: ⏬ Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: 🔧 Setup go for releases
|
||||||
|
uses: https://github.com/actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: '>=1.20.1'
|
||||||
|
|
||||||
- name: ✅ Validate gradle wrapper
|
- name: ✅ Validate gradle wrapper
|
||||||
uses: https://github.com/gradle/wrapper-validation-action@v2
|
uses: https://github.com/gradle/wrapper-validation-action@v2
|
||||||
|
|
||||||
|
@ -33,6 +38,9 @@ jobs:
|
||||||
- name: 🔧 Build ExploreCraft Tweaks
|
- name: 🔧 Build ExploreCraft Tweaks
|
||||||
run: ./gradlew build
|
run: ./gradlew build
|
||||||
|
|
||||||
|
- name: 🔢 Calculate sha256sum for packwiz
|
||||||
|
run: sha256sum build/libs/*
|
||||||
|
|
||||||
- name: 🫳 Capture build artifacts
|
- name: 🫳 Capture build artifacts
|
||||||
if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java
|
if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
|
@ -40,11 +48,6 @@ jobs:
|
||||||
name: ec-tweaks-build
|
name: ec-tweaks-build
|
||||||
path: build/libs/
|
path: build/libs/
|
||||||
|
|
||||||
- name: 🔧 Setup go for releases
|
|
||||||
uses: https://github.com/actions/setup-go@v4
|
|
||||||
with:
|
|
||||||
go-version: '>=1.20.1'
|
|
||||||
|
|
||||||
- name: ⏫ Publish release
|
- name: ⏫ Publish release
|
||||||
uses: actions/release-action@main
|
uses: actions/release-action@main
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx1G
|
||||||
org.gradle.parallel = true
|
org.gradle.parallel = true
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
version = 0.0.1
|
version = 0.0.2
|
||||||
maven_group = net.explorecraft
|
maven_group = net.explorecraft
|
||||||
archives_base_name = tweaks
|
archives_base_name = tweaks
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 291 B |
|
@ -30,6 +30,14 @@
|
||||||
"id": "quilted_fabric_api",
|
"id": "quilted_fabric_api",
|
||||||
"versions": ">=7.0.2"
|
"versions": ">=7.0.2"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "create_dd",
|
||||||
|
"versions": ">=0.1d"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "create",
|
||||||
|
"versions": ">=0.5.1-f-build.1417+mc1.20.1"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "minecraft",
|
"id": "minecraft",
|
||||||
"versions": ">=1.20"
|
"versions": ">=1.20"
|
||||||
|
|
Loading…
Reference in a new issue