Skip to content

Commit

Permalink
Create maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle authored Jan 20, 2023
1 parent 86ddbf2 commit 2277e53
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Java CI with Maven

on:
workflow_dispatch:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3.3.0
- name: Set up JDK 11
uses: actions/setup-java@v3.9.0
with:
java-version: '11'
distribution: 'temurin'
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.2
with:
# A file, directory or wildcard pattern that describes what to upload
path: /home/runner/work/BlueMapCustomSkinProvider/BlueMapCustomSkinProvider/target/*

0 comments on commit 2277e53

Please sign in to comment.