Skip to content

Switch github actions to Java 11 #21

Switch github actions to Java 11

Switch github actions to Java 11 #21

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build
run: ./gradlew build
- name: Upload MBTilesServer.jar
uses: actions/upload-artifact@v2
with:
name: MBTilesServer.jar
path: build/libs/MBTilesServer-*.jar