Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@ jobs:
id: buildx
uses: docker/setup-buildx-action@v4
- name: Build and Push by digest (runtime)
uses: specsnl/github-actions/build-target@1.1.1
uses: specsnl/github-actions/build-target@1.2.0
with:
platform: ${{ inputs.platform }}
image-name: ${{ steps.image_name.outputs.lowercase }}
dockerfile: ${{ inputs.dockerfile }}
target: runtime
- name: Build and Push by digest (builder)
uses: specsnl/github-actions/build-target@1.1.1
uses: specsnl/github-actions/build-target@1.2.0
with:
platform: ${{ inputs.platform }}
image-name: ${{ steps.image_name.outputs.lowercase }}
dockerfile: ${{ inputs.dockerfile }}
target: builder
- name: Build and Push by digest (builder_nodejs)
uses: specsnl/github-actions/build-target@1.1.1
uses: specsnl/github-actions/build-target@1.2.0
with:
platform: ${{ inputs.platform }}
image-name: ${{ steps.image_name.outputs.lowercase }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
with:
string: ${{ inputs.image-name }}
- name: Build and Push by digest
uses: specsnl/github-actions/build-image@1.1.1
uses: specsnl/github-actions/build-image@1.2.0
with:
dockerfile: ${{ inputs.dockerfile }}
platform: ${{ inputs.platform }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/merge-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,21 +59,21 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Create Manifest (runtime)
uses: specsnl/github-actions/create-manifest-for-target@1.1.1
uses: specsnl/github-actions/create-manifest-for-target@1.2.0
with:
image-name: ${{ steps.image_name.outputs.lowercase }}
target: runtime
description: ${{ inputs.description-runtime }}
title: ${{ inputs.title-runtime }}
- name: Create Manifest (builder)
uses: specsnl/github-actions/create-manifest-for-target@1.1.1
uses: specsnl/github-actions/create-manifest-for-target@1.2.0
with:
image-name: ${{ steps.image_name.outputs.lowercase }}
target: builder
description: ${{ inputs.description-builder }}
title: ${{ inputs.title-builder }}
- name: Create Manifest (builder_nodejs)
uses: specsnl/github-actions/create-manifest-for-target@1.1.1
uses: specsnl/github-actions/create-manifest-for-target@1.2.0
with:
image-name: ${{ steps.image_name.outputs.lowercase }}
target: builder_nodejs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Create Manifest
uses: specsnl/github-actions/create-manifest@1.1.1
uses: specsnl/github-actions/create-manifest@1.2.0
with:
image-name: ${{ steps.image_name.outputs.lowercase }}
title: ${{ inputs.title }}
Expand Down
5 changes: 5 additions & 0 deletions build-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ inputs:
description: Custom image description (overrides repository description)
type: string
required: false
secrets:
description: List of secrets to expose to the build
type: string
required: false

runs:
using: composite
Expand Down Expand Up @@ -56,6 +60,7 @@ runs:
outputs: type=image,name=${{ inputs.image-name }},push-by-digest=true,name-canonical=true,oci-mediatypes=true
cache-from: type=gha,scope=${{ inputs.dockerfile }}-${{ env.PLATFORM_PAIR }}
cache-to: type=gha,mode=max,scope=${{ inputs.dockerfile }}-${{ env.PLATFORM_PAIR }}
secrets: ${{ inputs.secrets }}
- name: Export digest
shell: bash
run: |
Expand Down
5 changes: 5 additions & 0 deletions build-target/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ inputs:
description: Custom image description (overrides repository description)
type: string
required: false
secrets:
description: List of secrets to expose to the build
type: string
required: false

runs:
using: composite
Expand Down Expand Up @@ -64,6 +68,7 @@ runs:
outputs: type=image,name=${{ inputs.image-name }},push-by-digest=true,name-canonical=true,oci-mediatypes=true
cache-from: type=gha,scope=${{ inputs.dockerfile }}-${{ env.PLATFORM_PAIR }}-${{ inputs.target }}
cache-to: type=gha,mode=max,scope=${{ inputs.dockerfile }}-${{ env.PLATFORM_PAIR }}-${{ inputs.target }}
secrets: ${{ inputs.secrets }}
- name: Export digest (${{ inputs.target }})
shell: bash
run: |
Expand Down