We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed2c9c1 commit aa96ee7Copy full SHA for aa96ee7
.github/workflows/docker-build-web.yml
@@ -29,9 +29,6 @@ jobs:
29
- name: Checkout Repository
30
uses: actions/checkout@v4
31
32
- - name: Set up QEMU
33
- uses: docker/setup-qemu-action@v3
34
-
35
- name: Set up Docker Buildx
36
uses: docker/setup-buildx-action@v3
37
@@ -105,4 +102,4 @@ jobs:
105
102
- name: Create Image Manifest
106
103
run: |
107
104
docker buildx imagetools create -t ghcr.io/capsoftware/cap-web:${{ inputs.tag || 'latest' }} \
108
- $(find /tmp/digests -type f -not -path "*/\.*" | xargs -I {} echo "-f ghcr.io/capsoftware/cap-web@sha256:{}")
+ $(find /tmp/digests -type f -not -path "*/\.*" -exec basename {} \; | xargs -I {} echo "ghcr.io/capsoftware/cap-web@sha256:{}")
0 commit comments