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.
64 lines
2.0 KiB
YAML
64 lines
2.0 KiB
YAML
name: CI Tests
|
|
|
|
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: 'Publish to William278.net 🚀'
|
|
uses: WiIIiam278/bones-publish-action@v1
|
|
with:
|
|
api-key: ${{ secrets.BONES_API_KEY }}
|
|
project: 'husksync'
|
|
channel: 'alpha'
|
|
version: ${{ env.version_name }}
|
|
changelog: ${{ github.event.head_commit.message }}
|
|
distro-names: |
|
|
paper
|
|
fabric-1.20.1
|
|
distro-groups: |
|
|
paper
|
|
fabric
|
|
distro-descriptions: |
|
|
Paper
|
|
Fabric 1.20.1
|
|
files: |
|
|
target/HuskSync-Paper-${{ env.version_name }}.jar
|
|
target/HuskSync-Fabric-${{ env.version_name }}+mc.1.20.1.jar |