Remove last word page if it is empty #184
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 new JAR to GitHub Packages | |
on: | |
push: | |
tags: | |
- "v*" | |
env: | |
GITHUB_USERNAME: AntonOellerer | |
jobs: | |
gradle-publish: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
- uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build -x test -x check publish | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
prerelease: false | |
files: | | |
build/libs/*.jar | |
LICENSE |