tag types as ClientOnly to prevent classload on server #117
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: builds | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
jobs: | |
reobfJar: | |
runs-on: Felix | |
steps: | |
- uses: actions/checkout@v2 | |
- run: git submodule update --init --recursive | |
- run: ./gradlew publishToMavenLocal | |
- run: mkdir jars | |
- run: mv build/libs/quartz-* jars/ | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: jars | |
path: jars/* |