Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/Dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
cubk1 committed Dec 18, 2023
2 parents 0161e98 + fd94c3e commit 414b0f7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build and Release

on:
push:
branches:
- Dev

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'

- name: Build JAR
run: mvn package

- name: Upload JAR
uses: actions/upload-artifact@v2
with:
name: Release
path: target/NSC2-2.0.jar

0 comments on commit 414b0f7

Please sign in to comment.