baritone/.github/workflows/gradle_build.yml

43 lines
956 B
YAML
Raw Normal View History

2021-07-12 04:10:13 +00:00
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
2022-04-05 01:53:29 +00:00
- name: Set up JDK 17
2021-07-12 04:10:13 +00:00
uses: actions/setup-java@v2
with:
2022-04-05 01:53:29 +00:00
java-version: '17'
2021-07-12 04:10:13 +00:00
distribution: 'adopt'
2022-06-01 21:49:41 +00:00
2021-07-12 04:10:13 +00:00
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build -Pmod_version="$(git describe --always --tags | cut -c2-)"
2022-06-03 20:24:17 +00:00
2021-07-12 04:10:13 +00:00
- name: Archive Artifacts
uses: actions/upload-artifact@v2
with:
name: Artifacts
path: dist/
- name: Archive mapping.txt
uses: actions/upload-artifact@v2
with:
name: Mappings
2022-04-05 02:15:21 +00:00
path: mapping/