Bump version to 0.8.0 #19
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
# Publish on new tag Workflow | |
name: Publish on new tag | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
# Get Tag | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Get the tag | |
id: get_tag | |
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
- name: Display tag | |
run: echo "Tag is $TAG" | |
# Build | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 10 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
**/loom-cache | |
**/prebundled-jars | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Chmod Gradle | |
run: chmod +x ./gradlew | |
- name: Build | |
run: ./gradlew build --no-daemon | |
- name: List Tags | |
run: git tag | |
- name: Get Tag from env | |
run: echo ${{ env.TAG }} | |
# Publish | |
- uses: Kir-Antipov/mc-publish@v3.3 | |
with: | |
github-tag: ${{ env.TAG }} | |
changelog-file: CHANGELOG.md | |
github-draft: true | |
github-discussion: Announcements | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
files: versions/1.8.9-forge/build/libs/nez-1.8.9-forge-*.jar | |
name: Not Enough Zombies v${{ env.TAG }} | |
version: ${{ env.TAG }} | |
version-type: release | |
loaders: forge | |
game-versions: 1.8.9 | |
java: Java 1.8 | |
retry-attempts: 2 | |
retry-delay: 10000 | |
fail-mode: fail |