|
| 1 | +name: Build Steps |
| 2 | + |
| 3 | +on: |
| 4 | + workflow_call: |
| 5 | + inputs: |
| 6 | + platform: |
| 7 | + required: true |
| 8 | + type: string |
| 9 | + registry_image: |
| 10 | + required: true |
| 11 | + type: string |
| 12 | + runtime: |
| 13 | + required: true |
| 14 | + type: string |
| 15 | + buildpack: |
| 16 | + required: true |
| 17 | + type: string |
| 18 | + |
| 19 | +jobs: |
| 20 | + build: |
| 21 | + steps: |
| 22 | + - |
| 23 | + name: Prepare Platform Environment |
| 24 | + run: | |
| 25 | + platform=${{ inputs.platform }} |
| 26 | + echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV |
| 27 | + - |
| 28 | + name: Checkout |
| 29 | + uses: actions/checkout@v4 |
| 30 | + - |
| 31 | + name: Docker meta |
| 32 | + id: meta |
| 33 | + uses: docker/metadata-action@v5 |
| 34 | + with: |
| 35 | + images: ${{ inputs.registry_image }} |
| 36 | + - |
| 37 | + name: Set up QEMU |
| 38 | + uses: docker/setup-qemu-action@v3 |
| 39 | + - |
| 40 | + name: Set up Docker Buildx |
| 41 | + uses: docker/setup-buildx-action@v3 |
| 42 | + - |
| 43 | + name: Login to Docker Hub |
| 44 | + uses: docker/login-action@v3 |
| 45 | + with: |
| 46 | + username: ${{ secrets.DOCKERHUB_USERNAME }} |
| 47 | + password: ${{ secrets.DOCKERHUB_TOKEN }} |
| 48 | + - |
| 49 | + name: Build and push by digest |
| 50 | + id: build |
| 51 | + uses: docker/build-push-action@v5 |
| 52 | + with: |
| 53 | + context: . |
| 54 | + file: ./deployments/Dockerfile |
| 55 | + platforms: ${{ inputs.platform }} |
| 56 | + labels: ${{ steps.meta.outputs.labels }} |
| 57 | + outputs: type=image,name=${{ inputs.registry_image }},push-by-digest=true,name-canonical=true,push=true |
| 58 | + build-args: | |
| 59 | + RUNTIME=${{ inputs.runtime }} |
| 60 | + BUILDPACK=${{ inputs.buildpack }} |
| 61 | + - |
| 62 | + name: Export digest |
| 63 | + run: | |
| 64 | + mkdir -p /tmp/digests |
| 65 | + digest="${{ steps.build.outputs.digest }}" |
| 66 | + touch "/tmp/digests/${digest#sha256:}" |
| 67 | + - |
| 68 | + name: Upload digest |
| 69 | + uses: actions/upload-artifact@v4 |
| 70 | + with: |
| 71 | + name: digests-${{ env.PLATFORM_PAIR }} |
| 72 | + path: /tmp/digests/* |
| 73 | + if-no-files-found: error |
| 74 | + retention-days: 1 |
0 commit comments