Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

chore: Bumps gradle to v8.6 #89

chore: Bumps gradle to v8.6

chore: Bumps gradle to v8.6 #89

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Gradle
uses: null2264/actions/gradle-setup@6712f98d592b126629afd27dc4870c93b53426b4
with:
java: 21
- name: Build LibreExpFix
run: ./gradlew build
- name: Move needed jar files
shell: zsh {0}
run: mkdir filtered && cp --parents versions/*/build/libs/*-(fabric|forge|neoforge).jar filtered/
- name: Upload build folder
uses: actions/upload-artifact@v3
with:
path: filtered/versions/*/build/libs/*.jar
if-no-files-found: error
retention-days: 3