run prettier on the file

gaelg/sign-images-cosign
Gaël Goinvic 2024-01-09 09:49:09 +01:00
parent 75a670d093
commit 06545a4a8e
No known key found for this signature in database
GPG Key ID: 1432A13D0F88CEAF
1 changed files with 8 additions and 8 deletions

View File

@ -9,7 +9,7 @@ on:
concurrency: ${{ github.workflow }}-${{ github.ref_name }}
permissions:
id-token: write # needed for signing the images with GitHub OIDC Token
id-token: write # needed for signing the images with GitHub OIDC Token
jobs:
buildx:
name: Docker Buildx
@ -75,14 +75,14 @@ jobs:
- name: Sign the images with GitHub OIDC Token
env:
DIGEST: ${{ steps.build-and-push.outputs.digest }}
TAGS: ${{ steps.meta.outputs.tags }}
DIGEST: ${{ steps.build-and-push.outputs.digest }}
TAGS: ${{ steps.meta.outputs.tags }}
run: |
images=""
for tag in ${TAGS}; do
images+="${tag}@${DIGEST} "
done
cosign sign --yes ${images}
images=""
for tag in ${TAGS}; do
images+="${tag}@${DIGEST} "
done
cosign sign --yes ${images}
- name: Update repo description
if: matrix.variant == 'vanilla'