Skip to content

Commit

Permalink
Merge pull request #17 from iqunlim/main
Browse files Browse the repository at this point in the history
Create maven.yml and update Readme
  • Loading branch information
tolmar authored Feb 1, 2024
2 parents 2026386 + f8c0c41 commit 26e7793
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Maven Verify

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

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
architecture: x64
cache: maven
- name: Test and build Maven project
run: mvn --batch-mode --update-snapshots verify --file pom.xml
- name: Upload build artifact
run: mkdir staging && cp target/*-jar-with-dependencies.jar staging
- uses: actions/upload-artifact@v4
with:
name: Build
path: staging
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## EB Project Editor
![maven workflow badge](https://github.com/pk-hack/EbProjectEditor/actions/workflows/maven.yml/badge.svg?branch=main)

[Latest Development Build](https://nightly.link/pk-hack/EbProjectEditor/workflows/maven/main/Build.zip)

EB Project Editor is a graphical Java application used to edit projects created with [CoilSnake](https://pk-hack.github.io/CoilSnake/), the most powerful mod making tool for the game EarthBound. It's distributed as part of CoilSnake, but it's actually an independent application.

0 comments on commit 26e7793

Please sign in to comment.