Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
storm345 committed Mar 31, 2021
1 parent 71099dd commit 689863b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/maven-checkbuilds.yml
@@ -0,0 +1,25 @@
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path

name: Maven Package

on:
pull_request:
branches:
- 1.13plus
workflow_dispatch:
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
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml

- name: Build with Maven
run: mvn -B package --file pom.xml
3 changes: 0 additions & 3 deletions .github/workflows/maven-publish.yml
Expand Up @@ -9,9 +9,6 @@ on:
push:
branches:
- 1.13plus
pull_request:
branches:
- 1.13plus
workflow_dispatch:
jobs:
build:
Expand Down

0 comments on commit 689863b

Please sign in to comment.