Merge pull request #444 from xenondevs/dependabot/gradle/com.github.l… #1999
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 Artifacts | |
on: | |
push: | |
branches: | |
- '**' | |
release: | |
types: [ created ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set Up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: adopt | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
with: | |
cache-disabled: true | |
- name: Build Nova | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: | | |
test | |
loaderJar | |
-PoutDir=artifacts | |
-Prelease | |
- name: Upload Artifacts | |
id: upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Artifacts | |
path: ./artifacts/*.jar | |
- name: Deploy to xenondevs repository | |
if: github.event_name == 'release' | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: | | |
publishNovaPublicationToXenondevsRepository | |
publishNovaAPIPublicationToXenondevsRepository | |
publishNovaGradlePluginPublicationToXenondevsRepository | |
publishNova-gradle-pluginPluginMarkerMavenPublicationToXenondevsRepository | |
publishCatalogPublicationToXenondevsRepository | |
-Prelease | |
env: | |
ORG_GRADLE_PROJECT_xenondevsUsername: ${{ secrets.XENONDEVS_RELEASES_USERNAME }} | |
ORG_GRADLE_PROJECT_xenondevsPassword: ${{ secrets.XENONDEVS_RELEASES_PASSWORD }} |