Skip to content

Commit

Permalink
v3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EwyBoy committed Jan 4, 2024
1 parent 3bd4f01 commit 4bcbdb0
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 72 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: build-artifacts

on: [ push, pull_request ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17

- name: Make gradlew executable
run: chmod +x ./gradlew

- name: Build artifacts
run: ./gradlew clean build

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: build/libs
40 changes: 40 additions & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: build-and-deploy

on:
release:
types:
- published

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17

- name: Make gradlew executable
run: chmod +x ./gradlew

- name: Build artifacts
run: ./gradlew clean build

- name: Upload to GitHub, Modrinth, and CurseForge
uses: Kir-Antipov/[email protected]
with:
modrinth-id: ore-tweaker
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}

curseforge-id: 242436
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}

github-token: ${{ secrets.GITHUB_TOKEN }}

loaders: forge
game-versions: 1.18.2
version-type: release

71 changes: 0 additions & 71 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
org.gradle.jvmargs=-Xmx5G

# Mod Info
VERSION=3.4.0
VERSION=3.4.1
AUTHOR=Ewy
MODNAME=OreTweaker
MODID=oretweaker
Expand Down

0 comments on commit 4bcbdb0

Please sign in to comment.