Adding scrollbars to tree and packages list, added minimum details pa… #12
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 snapshot to TBE | |
on: [ push ] | |
jobs: | |
publish: | |
name: Publish Package Search Snapshot to TBE | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
cache: gradle | |
- uses: gradle/gradle-build-action@v2 | |
- name: Run :publishShadowPlugin task | |
run: ./gradlew :plugin:publishShadowPlugin publishAllPublicationsToSpaceRepository | |
env: | |
TOOLBOX_ENTERPRISE_TOKEN: ${{ secrets.TOOLBOX_ENTERPRISE_TOKEN }} | |
GRADLE_ENTERPRISE_KEY: ${{ secrets.GRADLE_ENTERPRISE_KEY }} | |
MAVEN_SPACE_PASSWORD: ${{ secrets.MAVEN_SPACE_PASSWORD }} | |
MAVEN_SPACE_USERNAME: ${{ secrets.MAVEN_SPACE_USERNAME }} |