update version => 1.0.63: hotfix for illegal +nbt containers not prop… #47
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: release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout changes | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
check-latest: true | |
cache: 'maven' | |
- name: Build jar | |
run: mvn --batch-mode --show-version --errors package --file pom.xml | |
- name: Publish release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: '${{ github.ref_name }}' | |
body: 'Release generated at commit: ${{ github.sha }}' | |
files: 'target/AntiIllegals-*.jar' |