Build and Release dev build #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Release dev build | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'gradle.properties' | |
concurrency: | |
group: "latest" | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'zulu' | |
java-package: 'jdk' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Read Minecraft Version | |
id: read_version | |
run: echo "::set-output name=minecraft_version::$(grep minecraft_version gradle.properties | cut -d'=' -f2)" | |
- name: Build | |
run: ./gradlew build | |
- name: Remove *-sources.jar | |
run: rm ./build/libs/*-sources.jar || true | |
- uses: "0xDylan/[email protected]" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: false | |
title: "Latest Build (${{ steps.read_version.outputs.minecraft_version }})" | |
files: | | |
./build/libs/*.jar |