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 1f5b7c8 commit f8066d7Copy full SHA for f8066d7
.github/workflows/cicd.yaml
@@ -118,7 +118,9 @@ jobs:
118
name: Build lock base image tags to same version
119
working-directory: ${{env.base_dir}}/${{ matrix.container_name }}
120
run: |
121
- make build BASE_IMAGE_TAG=${${{ github.ref_name }}#v} IMAGE_NAME=${{ env.registry }}/${{ env.image_prefix }}${{ matrix.container_name }} WORKSPACE_FOLDER=${{ env.workspace_folder }}
+ TAG=${{ github.ref_name }}
122
+ TAG_VERSION=${TAG#v}
123
+ make build BASE_IMAGE_TAG=$TAG_VERSION IMAGE_NAME=${{ env.registry }}/${{ env.image_prefix }}${{ matrix.container_name }} WORKSPACE_FOLDER=${{ env.workspace_folder }}
124
125
126
- if: steps.changes.outputs.src == 'true' || startsWith(github.ref, 'refs/tags/v')
0 commit comments