Skip to content

Update README.md

Update README.md #19

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: ['master', 'develop']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build with Maven - Install
run: mvn install:install-file -Dfile=res/jars/JSplashScreen.jar -DgroupId=com.thehowtotutorial.splashscreen -DartifactId=JSplashScreen -Dversion=1.0 -Dpackaging=jar
- name: Build with Maven - From Pom
run: mvn -B package --file pom.xml
- name: Upload build artifacts
uses: actions/upload-artifact@v3.1.2
with:
name: my-artifacts
path: target/*.jar
# 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