mirror of
https://github.com/GeyserMC/PackConverter.git
synced 2025-12-19 14:59:21 +00:00
* move version/group setting to gradle.properties, publish all necessary artifacts * We dont need the : --------- Co-authored-by: rtm516 <rtm516@users.noreply.github.com>
58 lines
1.9 KiB
YAML
58 lines
1.9 KiB
YAML
name: Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths-ignore:
|
|
- '.github/ISSUE_TEMPLATE/*.yml'
|
|
- '.github/actions/pullrequest.yml'
|
|
- '.idea/copyright/*.xml'
|
|
- '.gitignore'
|
|
- 'LICENSE'
|
|
- 'README.md'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository and submodules
|
|
# See https://github.com/actions/checkout/commits
|
|
uses: actions/checkout@72f2cec99f417b1a1c5e2e88945068983b7965f9
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Validate Gradle Wrapper
|
|
# See https://github.com/gradle/wrapper-validation-action/commits
|
|
uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4
|
|
|
|
# See https://github.com/actions/setup-java/commits
|
|
- uses: actions/setup-java@4075bfc1b51bf22876335ae1cd589602d60d8758
|
|
with:
|
|
java-version: 17
|
|
distribution: temurin
|
|
|
|
- name: Build
|
|
# See https://github.com/gradle/gradle-build-action/commits
|
|
uses: gradle/gradle-build-action@3bfe3a46584a206fb8361cdedd0647b0c4204232
|
|
with:
|
|
arguments: build
|
|
gradle-home-cache-cleanup: true
|
|
|
|
- name: Archive artifacts (Boostrap)
|
|
# See https://github.com/actions/upload-artifact/commits
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
|
|
if: success()
|
|
with:
|
|
name: PackConverter CLI
|
|
path: bootstrap/build/libs/PackConverter.jar
|
|
if-no-files-found: error
|
|
|
|
- name: Publish to Maven Repository
|
|
if: ${{ success() && github.repository == 'GeyserMC/PackConverter' && github.ref_name == 'master' }}
|
|
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
|
|
env:
|
|
OPENCOLLAB_USERNAME: ${{ vars.DEPLOY_USER }}
|
|
OPENCOLLAB_PASSWORD: ${{ secrets.DEPLOY_PASS }}
|
|
with:
|
|
arguments: publish
|