add track-targeting block placing distance configuring #105
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 | |
on: [ workflow_dispatch, push, pull_request ] | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, '[skip]')" | |
runs-on: windows-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 17 | |
- name: setup gradle | |
uses: gradle/gradle-build-action@v2.4.2 | |
with: | |
cache-read-only: false | |
- name: do the build | |
run: .\gradlew.bat clean assemble | |
- name: upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unlimited-artifacts | |
path: | | |
build/libs/merged/*.jar | |
*/build/libs/*.jar |