1
0
mirror of https://github.com/nkomarn/harbor.git synced 2024-11-27 20:35:21 +01:00
Harbor-Minecraft/.github/workflows/ci.yml
Mykyta Komarnytskyy 7ad3625614 Restore CI workflow
2020-11-13 13:57:46 -08:00

21 lines
439 B
YAML

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn package --file pom.xml
- name: Upload Artifact
uses: actions/upload-artifact@v2-preview
with:
name: Harbor
path: target/Harbor-*.jar