deps: bump com.google.guava:guava from 33.1.0-jre to 33.2.0-jre (#624) #239
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
# Builds, tests the project with Gradle and uploads to Modrinth | |
name: CI Tests & Publish | |
on: | |
push: | |
branches: [ 'master' ] | |
paths-ignore: | |
- 'docs/**' | |
- 'workflows/**' | |
- 'README.md' | |
permissions: | |
contents: read | |
checks: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout for CI 🛎️' | |
uses: actions/checkout@v4 | |
- name: 'Set up JDK 17 📦' | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: 'Build with Gradle 🏗️' | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: build test publish | |
env: | |
SNAPSHOTS_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
SNAPSHOTS_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
- name: 'Publish Test Report 📊' | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() # Continue on failure | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
- name: 'Fetch Version Name 📝' | |
run: | | |
echo "::set-output name=VERSION_NAME::$(${{github.workspace}}/gradlew properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}')" | |
id: fetch-version | |
- name: Get Version | |
run: | | |
echo "version_name=${{steps.fetch-version.outputs.VERSION_NAME}}" >> $GITHUB_ENV | |
- name: 'Spigot: Publish to Modrinth & Hangar 🚰' | |
uses: WiIIiam278/mc-publish@hangar | |
with: | |
modrinth-id: J6U9o3JG | |
modrinth-featured: false | |
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | |
modrinth-dependencies: | | |
dynmap | suggests | * | |
bluemap | suggests | * | |
pl3xmap | suggests | * | |
plan | suggests | * | |
hangar-id: William278/HuskHomes | |
hangar-token: ${{ secrets.HANGAR_API_KEY }} | |
hangar-version-type: Alpha | |
files-primary: target/HuskHomes-Paper-${{ env.version_name }}.jar | |
name: HuskHomes (Spigot) v${{ env.version_name }} | |
version: ${{ env.version_name }} | |
version-type: alpha | |
changelog: ${{ github.event.head_commit.message }} | |
loaders: | | |
spigot | |
paper | |
folia | |
game-versions: | | |
1.17.1 | |
1.18.2 | |
1.19.4 | |
1.20.4 | |
java: 17 | |
- name: 'Sponge: Publish to Modrinth 🧽' | |
uses: WiIIiam278/mc-publish@hangar | |
if: success() || failure() | |
with: | |
modrinth-id: J6U9o3JG | |
modrinth-featured: false | |
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | |
modrinth-dependencies: | | |
bluemap | suggests | * | |
plan | suggests | * | |
files-primary: target/HuskHomes-Sponge-${{ env.version_name }}.jar | |
name: HuskHomes (Sponge) v${{ env.version_name }} | |
version: ${{ env.version_name }} | |
version-type: alpha | |
changelog: ${{ github.event.head_commit.message }} | |
loaders: | | |
sponge | |
game-versions: | | |
1.19.4 | |
java: 17 | |
- name: 'Fabric: Publish to Modrinth & CurseForge 🧵' | |
uses: WiIIiam278/mc-publish@hangar | |
if: success() || failure() | |
with: | |
modrinth-id: J6U9o3JG | |
modrinth-featured: false | |
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | |
curseforge-id: 849217 | |
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} | |
dependencies: | | |
fabric-api | requires | * | |
dynmap | suggests | * | |
bluemap | suggests | * | |
pl3xmap | suggests | * | |
luckperms | suggests | * | |
plan | suggests | * | |
impactor | suggests | * | |
placeholder-api | suggests | * | |
files-primary: target/HuskHomes-Fabric-${{ env.version_name }}.jar | |
name: HuskHomes (Fabric) v${{ env.version_name }} | |
version: ${{ env.version_name }} | |
version-type: alpha | |
changelog: ${{ github.event.head_commit.message }} | |
loaders: | | |
fabric | |
game-versions: | | |
1.20.4 | |
java: 17 | |
- name: 'Upload GitHub Artifacts 📦' | |
uses: actions/upload-artifact@v4 | |
if: success() || failure() | |
with: | |
name: HuskHomes | |
path: | | |
target/HuskHomes-Paper-${{ env.version_name }}.jar | |
target/HuskHomes-Sponge-${{ env.version_name }}.jar | |
target/HuskHomes-Fabric-${{ env.version_name }}.jar |