forked from public-mirrors/HuskSync
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
YAML
53 lines
1.6 KiB
YAML
name: Release Tests
|
|
|
|
on:
|
|
release:
|
|
types: [ 'published' ]
|
|
|
|
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:
|
|
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() # Continue on failure
|
|
with:
|
|
report_paths: '**/build/test-results/test/TEST-*.xml'
|
|
- name: 'Publish to William278.net 🚀'
|
|
uses: WiIIiam278/bones-publish-action@v1
|
|
with:
|
|
api-key: ${{ secrets.BONES_API_KEY }}
|
|
project: 'husksync'
|
|
channel: 'release'
|
|
version: ${{ github.event.release.tag_name }}
|
|
changelog: ${{ github.event.release.body }}
|
|
distro-names: |
|
|
paper
|
|
fabric-1.20.1
|
|
distro-groups: |
|
|
paper
|
|
fabric
|
|
distro-descriptions: |
|
|
Paper
|
|
Fabric 1.20.1
|
|
files: |
|
|
target/HuskSync-Paper-${{ github.event.release.tag_name }}.jar
|
|
target/HuskSync-Fabric-${{ github.event.release.tag_name }}+mc.1.20.1.jar |