Skip to content

fix: fix german umlauts #11

fix: fix german umlauts

fix: fix german umlauts #11

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
paths:
- '**/src/**'
- '**/pom.xml'
- 'pom.xml'
permissions:
# used by semantic release
contents: write
issues: write
pull-requests: write
# used to publish the jar to github packages
packages: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Run Tests
run: mvn -B -ntp clean install
- name: Create new release
uses: cycjimmy/semantic-release-action@v3
with:
extra_plugins: |
@semantic-release/git
@semantic-release/exec
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}