Skip to content

Update Mend: high confidence minor and patch dependency updates #18

Update Mend: high confidence minor and patch dependency updates

Update Mend: high confidence minor and patch dependency updates #18

Workflow file for this run

name: Build & Release
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: mvn clean install
- name: Create Release
if: startsWith(github.ref, 'refs/tags/v')
uses: ncipollo/release-action@v1
with:
token: ${{secrets.GITHUB_TOKEN}}
allowUpdates: true
artifacts: out/artifacts/ThreadFix_jar/ThreadFix.jar
generateReleaseNotes: true