MixinBooter 8.8 #9
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: Deploy | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+' | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Grant Execute Permission for gradlew | |
run: chmod +x gradlew | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
cache: gradle | |
- name: Publish to Maven | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: | | |
publish | |
-PCleanroomMaven=${{ vars.CLEANROOM_MAVEN }} | |
-PCleanroomMavenUsername=${{ secrets.MAVEN_NAME }} | |
-PCleanroomMavenPassword=${{ secrets.MAVEN_PASSWORD }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/libs/ | |
upload: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Download Artifacts | |
uses: actions/download-artifact@v3 | |
- name: Read gradle.properties | |
uses: BrycensRanch/read-properties-action@v1 | |
id: properties | |
with: | |
file: gradle.properties | |
all: true | |
- name: Read CHANGELOG.md | |
id: changelog | |
uses: 3liz/[email protected] | |
with: | |
add_emojis: false | |
- name: Publish to CurseForge + Modrinth | |
uses: Kir-Antipov/[email protected] | |
with: | |
name: ${{ steps.properties.outputs.mod_name }} ${{ steps.properties.outputs.mod_version }} | |
version: ${{ steps.properties.outputs.mod_version }} | |
version-type: ${{ steps.properties.outputs.version_type }} | |
changelog: ${{ steps.changelog.outputs.markdown }} | |
loaders: forge | |
game-versions: | | |
[1.8,1.12.2] | |
game-version-filter: releases | |
java: 8 | |
files: | | |
artifact/!(*-@(dev|sources|javadoc)).jar | |
artifact/*-@(dev).jar | |
artifact/*-@(sources).jar | |
artifact/*-@(javadoc).jar | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
curseforge-id: 419286 | |
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} | |
modrinth-id: G1ckZuWK | |
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} |