Sync with JVM when opening modules & removed add opens + redo tests #2
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: Publish | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Grant Execute Permission for gradlew | |
run: chmod +x gradlew | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'zulu' | |
cache: gradle | |
- name: Publish to Maven | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: | | |
publish | |
-PCleanroomMaven=${{ vars.CLEANROOM_MAVEN }} | |
-PCleanroomMavenUsername=${{ secrets.MAVEN_NAME }} | |
-PCleanroomMavenPassword=${{ secrets.MAVEN_PASSWORD }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/libs/ |