attempt at excluding bootstrap's shadow jar from publishing #9
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
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: Archive artifacts (Converter) | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 | |
if: success() | |
with: | |
name: PackConverter Library | |
path: converter/build/libs/PackConverter-lib.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: :converter:publish |