tweaks/.forgejo/workflows/build.yml
Sangelo 5ffb944a29
All checks were successful
build / build (21) (push) Successful in 1m23s
[a] add emojis to build
2024-06-09 19:45:56 +02:00

42 lines
1.2 KiB
YAML

# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: build
on: [pull_request, push]
jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
21, # Current Java LTS
]
runs-on: ubuntu-latest
steps:
- name: ⏬ Checkout repository
uses: actions/checkout@v4
- name: ✅ Validate gradle wrapper
uses: https://github.com/gradle/wrapper-validation-action@v2
- name: 🛠️ Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: "microsoft"
- name: ▶️ Make gradle wrapper executable
run: chmod +x ./gradlew
- name: 🔧 Build ExploreCraft Tweaks
run: ./gradlew build
- name: 🫳 Capture build artifacts
if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java
uses: actions/upload-artifact@v3
with:
name: ec-tweaks-build
path: build/libs/