We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47fe53e commit 2104425Copy full SHA for 2104425
1 file changed
.github/workflows/build-test-sign-image.yaml
@@ -121,6 +121,11 @@ jobs:
121
retention-days: 30
122
if-no-files-found: ignore
123
124
+ # Push CI image so Trivy (and anything else) can pull it from the registry.
125
+ - name: Push CI image to GHCR
126
+ run: |
127
+ docker push ${{ env.REGISTRY }}/${{ steps.image.outputs.name }}:ci-${{ github.sha }}
128
+
129
# Run your build/test script INSIDE the built image.
130
# Assumes your image contains your package source (COPY . ...) and that this script exists.
131
- name: Run build/test script inside image
0 commit comments