-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
manifest create with buildkit pin #2
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ jobs: | |
uses: docker/[email protected] | ||
with: | ||
endpoint: builders | ||
driver-opts: image=moby/buildkit:v0.10.6 | ||
# driver-opts: image=moby/buildkit:v0.10.6 | ||
|
||
- name: "[preparation] docker login" | ||
uses: docker/[email protected] | ||
|
@@ -175,13 +175,13 @@ jobs: | |
- name: "[build] create manifest list and push" | ||
working-directory: /tmp/digests | ||
run: | | ||
# docker manifest create ${{ env.DOCKER_HUB_REPO }}:${{ steps.meta.outputs.version }} \ | ||
# $(printf '${{ env.DOCKER_HUB_REPO }}@sha256:%s ' *) | ||
docker manifest create ${{ env.DOCKER_HUB_REPO }}:${{ steps.meta.outputs.version }} \ | ||
$(printf '${{ env.DOCKER_HUB_REPO }}@sha256:%s ' *) | ||
# docker manifest push ${{ env.DOCKER_HUB_REPO }}:${{ steps.meta.outputs.version }} | ||
docker manifest push ${{ env.DOCKER_HUB_REPO }}:${{ steps.meta.outputs.version }} | ||
docker buildx imagetools create -t ${{ env.DOCKER_HUB_REPO }}:${{ steps.meta.outputs.version }} \ | ||
$(printf '${{ env.DOCKER_HUB_REPO }}@sha256:%s ' *) | ||
# docker buildx imagetools create -t ${{ env.DOCKER_HUB_REPO }}:${{ steps.meta.outputs.version }} \ | ||
# $(printf '${{ env.DOCKER_HUB_REPO }}@sha256:%s ' *) | ||
- name: "[validate] inspect image" | ||
run: | | ||
|