baritone/.github/workflows/gradle_build.yml

49 lines
1.0 KiB
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:
2023-10-23 09:42:48 +00:00
branches: [ "1.20.2" ]
2021-07-12 04:10:13 +00:00
pull_request:
2023-10-23 09:42:48 +00:00
branches: [ "1.20.2" ]
permissions:
contents: read
2021-07-12 04:10:13 +00:00
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
2022-12-12 20:24:43 +00:00
uses: actions/setup-java@v3
2021-07-12 04:10:13 +00:00
with:
2022-04-05 01:53:29 +00:00
java-version: '17'
2023-01-06 03:25:03 +00:00
distribution: 'temurin'
2022-12-12 20:24:43 +00:00
cache: gradle
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
2023-01-06 03:09:56 +00:00
uses: actions/upload-artifact@v3
2021-07-12 04:10:13 +00:00
with:
name: Artifacts
path: dist/
- name: Archive mapping.txt
2023-01-06 03:09:56 +00:00
uses: actions/upload-artifact@v3
2021-07-12 04:10:13 +00:00
with:
name: Mappings
2022-04-05 02:15:21 +00:00
path: mapping/