mirror of
https://github.com/ViaVersion/ViaLoader.git
synced 2024-12-01 13:13:58 +01:00
756330f333
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
763 B
YAML
26 lines
763 B
YAML
name: build
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
- name: Validate Gradle Wrapper
|
|
uses: gradle/wrapper-validation-action@v1
|
|
- name: Set up JDK 21
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
distribution: temurin
|
|
java-version: 21
|
|
check-latest: true
|
|
- name: Build with Gradle
|
|
run: ./gradlew build
|
|
- name: Upload Artifacts to GitHub
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Artifacts
|
|
path: build/libs/
|