<3 you @jaredlll08
This commit is contained in:
parent
0a645c0da2
commit
8e6be11660
3 changed files with 1 additions and 50 deletions
24
.github/workflows/gradle.yml
vendored
24
.github/workflows/gradle.yml
vendored
|
@ -1,24 +0,0 @@
|
|||
name: Java CI with Gradle
|
||||
on:
|
||||
push:
|
||||
tags: 'v*'
|
||||
branches: 'main'
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '17'
|
||||
distribution: 'temurin'
|
||||
- name: Build with Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
with:
|
||||
arguments: build
|
||||
- uses: actions/upload-artifact@v2
|
||||
if: github.event_name != 'pull_request'
|
||||
with:
|
||||
name: Package
|
||||
path: build/libs
|
25
.github/workflows/publish.yml
vendored
25
.github/workflows/publish.yml
vendored
|
@ -1,25 +0,0 @@
|
|||
name: Publish tag
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
TAG_NAME: ${{ github.ref_name }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '17'
|
||||
distribution: 'temurin'
|
||||
- name: Build with Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
with:
|
||||
arguments: build
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: build/libs/*
|
|
@ -26,7 +26,7 @@ apply plugin: 'net.minecraftforge.gradle'
|
|||
apply plugin: 'org.parchmentmc.librarian.forgegradle'
|
||||
apply plugin: 'org.spongepowered.mixin'
|
||||
|
||||
version = '0.7.1'
|
||||
version = '0.8.0'
|
||||
group = 'at.petra-k.hexcasting' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||
archivesBaseName = 'hexcasting-1.18.2'
|
||||
|
||||
|
|
Loading…
Reference in a new issue