Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Nik0-0 committed Jun 9, 2024
2 parents 1684e9c + 8c3a1d9 commit d76f863
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload all JAR files
uses: actions/upload-artifact@v4
with:
name: jars
path: target/*.jar
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ugh Well! extremly simple stuff!

0 comments on commit d76f863

Please sign in to comment.