We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10bb16a commit a1f5590Copy full SHA for a1f5590
1 file changed
.github/workflows/build_and_push.yml
@@ -166,7 +166,7 @@ jobs:
166
- name: 🔨 Ruta Remediada (Aplicar Parche y Reconstruir)
167
if: ${{ needs.scan.outputs.needs_remediation == 'true' }}
168
run: |
169
- REMEDIATED_TAG="${{ needs.build.outputs.full_image }}-remediated"
+ REMEDIATED_TAG="${{ env.FULL_IMAGE }}-remediated"
170
echo "Aplicando parches y reconstruyendo en ${REMEDIATED_TAG}..."
171
172
# ASUME QUE EL DOCKERFILE AHORA TIENE LA INSTRUCCIÓN:
@@ -178,7 +178,7 @@ jobs:
178
docker push $REMEDIATED_TAG
179
push-sign:
180
runs-on: ubuntu-latest
181
- needs: [build, remediate] # Depende del Job anterior
+ needs: [scan] # Depende del Job anterior
182
steps:
183
- name: 🔑 Login to Quay.io
184
0 commit comments