We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbc2614 commit 06712d2Copy full SHA for 06712d2
.github/workflows/patch-image.yml
@@ -1,9 +1,6 @@
1
name: Patch Docker Image
2
3
on:
4
- push:
5
- branches:
6
- - chore/publish-runner
7
workflow_call:
8
inputs:
9
image:
@@ -78,10 +75,10 @@ jobs:
78
75
file: build/Dockerfile
79
76
context: "."
80
77
target: patched
81
- tags: "gcr.io/f5-gcs-7899-ptg-ingrss-ctlr/dev/nginx-ic/nginx-ingress:edge"
82
- platforms: "linux/arm64, linux/amd64"
+ tags: "${{ inputs.target_image }}:${{ inputs.target_tag }}"
+ platforms: ${{ inputs.platforms }}
83
pull: true
84
push: true
85
build-args: |
86
- IMAGE_NAME=gcr.io/f5-gcs-7899-ptg-ingrss-ctlr/dev/nginx-ic/nginx-ingress:edge
87
- IC_VERSION=5.2.0
+ IMAGE_NAME=${{ inputs.image }}:${{ inputs.tag }}
+ IC_VERSION=${{ inputs.ic_version }}
0 commit comments