mirror of
https://github.com/BlueMap-Minecraft/BlueMapAPI.git
synced 2025-02-15 19:41:29 +01:00
Add github build action
This commit is contained in:
parent
eeb0c99c8b
commit
dce95a317d
21
.github/workflows/gradle.yml
vendored
Normal file
21
.github/workflows/gradle.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
name: Java CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Set up JDK 1.8
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 1.8
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
- uses: actions/upload-artifact@v2-preview
|
||||
with:
|
||||
name: artifact
|
||||
path: build/libs/*
|
Loading…
Reference in New Issue
Block a user