Skip to content

Merge pull request #36 from BluevaDevelopment/dependabot/github_actio… #51

Merge pull request #36 from BluevaDevelopment/dependabot/github_actio…

Merge pull request #36 from BluevaDevelopment/dependabot/github_actio… #51

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Step 1 - Checkout main branch from GitHub
uses: actions/checkout@v4.2.2
- name: Step 2 - Set up JDK 17
uses: actions/setup-java@v4.5.0
with:
java-version: 17
distribution: 'corretto'
- name: Step 3 - Build Maven Project
run: |
mvn -B package --file pom.xml
mkdir staging && cp target/*.jar staging
- name: Step 4 - Set up a cache for Maven
uses: actions/cache@v4.1.2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Step 5 - Persist workflow data as artificats
uses: actions/upload-artifact@v4.3.4
with:
name: 'BlueCore'
path: staging
retention-days: 30