This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
HuskChat 3.0.1 - Hotfix #11
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
# Publishes a release to Modrinth and CurseForge when a release is published on GitHub. | |
name: Release Test & Publish | |
on: | |
release: | |
types: [ published ] | |
permissions: | |
contents: read | |
checks: write | |
env: | |
LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.10.8/x64/lib/python3.10/site-packages/jep/ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10.8' | |
- name: Install Python dependencies | |
shell: bash | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install jep | |
python -m pip install alt-profanity-check | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: build test publish | |
env: | |
RELEASES_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
RELEASES_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
- name: Upload to Modrinth & Hangar | |
uses: WiIIiam278/mc-publish@hangar | |
with: | |
modrinth-id: SSXTD3me | |
modrinth-featured: true | |
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | |
hangar-id: William278/HuskChat | |
hangar-token: ${{ secrets.HANGAR_API_KEY }} | |
files-primary: target/HuskChat-Plugin-${{ github.event.release.tag_name }}.jar | |
name: HuskChat v${{ github.event.release.tag_name }} | |
version: ${{ github.event.release.tag_name }} | |
version-type: release | |
changelog: ${{ github.event.release.body }} | |
game-versions: | | |
1.17 | |
1.17.1 | |
1.18 | |
1.18.1 | |
1.18.2 | |
1.19 | |
1.19.1 | |
1.19.2 | |
1.19.3 | |
1.19.4 | |
1.20 | |
1.20.1 | |
1.20.2 | |
1.20.3 | |
1.20.4 | |
modrinth-loaders: | | |
bungeecord | |
velocity | |
spigot | |
paper | |
folia | |
hangar-loaders: | | |
velocity | |
modrinth-dependencies: | | |
luckperms | suggests | * | |
papiproxybridge | suggests | * | |
placeholderapi | suggests | * | |
java: 17 | |
- name: Upload GitHub Artifact | |
uses: actions/upload-artifact@v4 | |
if: success() || failure() | |
with: | |
name: HuskChat Plugin | |
path: target/HuskChat-Plugin-*.jar |