@@ -103,26 +103,26 @@ jobs:
103
103
sudo freshclam
104
104
docker save $FULL_IMAGE -o $IMG_FILE
105
105
clamscan $IMG_FILE
106
- - name : Test image base layer
107
- # Don't run base layer check for selected images
108
- if : ${{ !contains(fromJson(env.no_base_check), matrix.image) }}
109
- run : IMG=${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }} make test-image-base-layer BUILDER=docker
110
- - name : Login
111
- uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
112
- with :
113
- username : ${{ secrets.DOCKERHUB_USER }}
114
- password : ${{ secrets.DOCKERHUB_PASS }}
115
- - name : Push
116
- run : docker push ${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }}
117
- - name : Get image digest
118
- if : ${{ inputs.image_tag != 'devel' }}
119
- id : digest
120
- run : |
121
- echo "image_sha=$(docker inspect --format='{{index .RepoDigests 0}}' ${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }})" >> $GITHUB_OUTPUT
122
- - name : Install cosign
123
- if : ${{ inputs.image_tag != 'devel' }}
124
- uses : sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6.0
125
- - name : Keyless image sign
126
- if : ${{ inputs.image_tag != 'devel' }}
127
- run : |
128
- cosign sign --yes ${{ steps.digest.outputs.image_sha }}
106
+ # - name: Test image base layer
107
+ # # Don't run base layer check for selected images
108
+ # if: ${{ !contains(fromJson(env.no_base_check), matrix.image) }}
109
+ # run: IMG=${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }} make test-image-base-layer BUILDER=docker
110
+ # - name: Login
111
+ # uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
112
+ # with:
113
+ # username: ${{ secrets.DOCKERHUB_USER }}
114
+ # password: ${{ secrets.DOCKERHUB_PASS }}
115
+ # - name: Push
116
+ # run: docker push ${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }}
117
+ # - name: Get image digest
118
+ # if: ${{ inputs.image_tag != 'devel' }}
119
+ # id: digest
120
+ # run: |
121
+ # echo "image_sha=$(docker inspect --format='{{index .RepoDigests 0}}' ${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }})" >> $GITHUB_OUTPUT
122
+ # - name: Install cosign
123
+ # if: ${{ inputs.image_tag != 'devel' }}
124
+ # uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 #v3.6.0
125
+ # - name: Keyless image sign
126
+ # if: ${{ inputs.image_tag != 'devel' }}
127
+ # run: |
128
+ # cosign sign --yes ${{ steps.digest.outputs.image_sha }}
0 commit comments