Build commit a6de27131fc5513d5f132b6946c2627ccb2e8562 on branch refs/pull/65/merge #139
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: snapshot-workflow | |
run-name: Build commit ${{ github.sha }} on branch ${{ github.ref }} | |
on: | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
jobs: | |
build-snapshot: | |
name: Build Snapshot | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: echo "This job was automatically triggered by a ${{ github.event_name }} event." | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-package: 'jdk' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Build & Test | |
run: | | |
mvn -B -U clean package |