Skip to content

Add branch name to git log #28

Add branch name to git log

Add branch name to git log #28

Workflow file for this run

name: Build
# Run deployment to Github packages on commits to the `main` branch
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
cache: 'maven'
- name: Build package
run: mvn clean package