mirror of
https://github.com/Astatin3/meteor-baritone.git
synced 2026-06-08 16:18:08 -06:00
Get lavacast generation working
This commit is contained in:
Executable
+25
@@ -0,0 +1,25 @@
|
||||
name: Publish Development Build
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Java
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: 21
|
||||
distribution: adopt
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
- name: Release
|
||||
uses: marvinpinto/action-automatic-releases@latest
|
||||
with:
|
||||
repo_token: '${{ secrets.GITHUB_TOKEN }}'
|
||||
automatic_release_tag: latest
|
||||
prerelease: true
|
||||
title: Dev Build
|
||||
files: |
|
||||
./build/libs/*.jar
|
||||
Executable
+23
@@ -0,0 +1,23 @@
|
||||
name: Build Pull Request Artifacts
|
||||
on: pull_request
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Wrapper Validation
|
||||
uses: gradle/actions/wrapper-validation@v3
|
||||
- name: Set up Java
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: 21
|
||||
distribution: adopt
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
- name: Release
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Artifacts
|
||||
path: build/libs/
|
||||
Reference in New Issue
Block a user