Skip to content

Add MIT license to the project #1

Add MIT license to the project

Add MIT license to the project #1

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
build-and-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Build fat JAR
run: ./gradlew :hotpath-cli:shadowJar
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: hotpath-cli/build/libs/hotpath.jar
generate_release_notes: true