Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV committed Jun 19, 2024
1 parent de3aa6f commit d6a0844
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Nextron Nightly Builds

on:
push:
branches: [ "master", "command" ]
pull_request:
branches: [ "master", "command" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B clean package --file pom.xml

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6

# Upload build artifacts
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: packaged-artifacts
path: server/plugins/*.jar
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,5 @@ run/

server
.vscode
.github/
/move.sh
/.stignore

0 comments on commit d6a0844

Please sign in to comment.