Add build-and-deploy details for theme jar #39
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code. | |
uses: actions/checkout@v3 | |
- name: Get Zulu OpenJDK (current LTS version). | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Build a shaded fat jar for Twilio integration. | |
working-directory: twilio-keycloak-provider | |
run: ../gradlew shadowJar | |
- name: Build the RequiredAction jar. | |
working-directory: keycloak-required-action | |
run: ../gradlew jar | |
- name: Build the Keycloak theme jar. | |
working-directory: pdc-keycloak-theme | |
run: ../gradlew jar |