chore: remove ORG_ from ORG_REGISTRY_USER and ORG_REGISTRY_PASSWORD
#153
This file contains hidden or 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: Docker Verify | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| docker: | |
| name: Docker Verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Install Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: 21 | |
| distribution: 'corretto' | |
| - name: Build Docker image | |
| run: ./gradlew jibDockerBuild |