Update to bring nhsuk stylesheet dependency within the project (#4) #6
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: pr | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| env: | |
| IMAGE_NAME: ${{ github.event.repository.name }} | |
| VERSION: '0.0.1' | |
| jobs: | |
| build-gradle: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Setup Gradle | |
| uses: gradle/[email protected] | |
| - name: Execute Gradle build | |
| run: ./gradlew test installDist | |
| - name: Archive production artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: binaries | |
| path: build/install | |
| retention-days: 1 | |
| build-docker: | |
| runs-on: ubuntu-latest | |
| needs: build-gradle | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Download binaries | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: binaries | |
| path: build/install | |
| - name: Build container image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| push: false | |
| builder: ${{ steps.buildx.outputs.name }} | |
| context: . | |
| file: ./Dockerfile | |
| platforms: linux/amd64,linux/arm64/v8 | |
| tags: | | |
| ghcr.io/nhsdigital/${{ env.IMAGE_NAME }}:${{ env.VERSION }} | |
| ghcr.io/nhsdigital/${{ env.IMAGE_NAME }}:latest | |
| labels: | | |
| org.opencontainers.image.title=${{ github.event.repository.name }} | |
| org.opencontainers.image.description=${{ github.event.repository.description }} | |
| org.opencontainers.image.url=${{ github.event.repository.html_url }} | |
| org.opencontainers.image.revision=${{ github.sha }} | |
| org.opencontainers.image.version=${{ env.VERSION }} |