Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andifalk authored Dec 13, 2023
1 parent 5da9450 commit 1ebcaa5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build package

on:
push:
branches:
- '*'
workflow_dispatch:

permissions: read-all

jobs:
build-image:
runs-on: ubuntu-latest
permissions:
security-events: write
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 17 for x64
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'liberica'
architecture: x64
- name: Maven build
run: ./mvnw --batch-mode --update-snapshots verify
- name: Maven Dependency Tree Dependency Submission
uses: advanced-security/[email protected]

0 comments on commit 1ebcaa5

Please sign in to comment.