We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5801326 commit 3b36870Copy full SHA for 3b36870
.github/workflows/docker-reproducible.yml
@@ -115,6 +115,11 @@ jobs:
115
rm -f lighthouse-*-${{ matrix.arch }}
116
docker rmi lighthouse-verify-1-${{ matrix.arch }} || true
117
118
+ # Re-tag the second image for publishing (we verified it's identical to first)
119
+ VERSION=${{ needs.extract-version.outputs.VERSION }}
120
+ FINAL_TAG="${{ env.DOCKER_REPRODUCIBLE_IMAGE_NAME }}:${VERSION}-${{ matrix.arch }}"
121
+ docker tag lighthouse-verify-2-${{ matrix.arch }} "$FINAL_TAG"
122
+
123
- name: Log in to Docker Hub
124
if: ${{ github.event_name != 'workflow_dispatch' }}
125
uses: docker/login-action@v3
0 commit comments