Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Maryam Tahhan <[email protected]>
  • Loading branch information
maryamtahhan committed Jan 15, 2025
1 parent 6caeb31 commit 24127ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
uses: docker/login-action@v3
with:
registry: quay.io/afxdp-plugins-for-kubernete
registry: quay.io/afxdp-plugins-for-kubernetes
username: ${{ secrets.quay_username }}
password: ${{ secrets.quay_robot_token }}

Expand All @@ -65,21 +65,21 @@ jobs:
context: .
platforms: ${{ matrix.PLATFORMS }}
push: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
tags: quay.io/afxdp-plugins-for-kubernete/${{ matrix.IMAGE_NAME }}:${{ matrix.LABEL }}
tags: quay.io/afxdp-plugins-for-kubernetes/${{ matrix.IMAGE_NAME }}:${{ matrix.LABEL }}
labels: ${{ matrix.LABEL }}
build-args: ${{matrix.BUILD_ARGS}}
file: ${{ matrix.IMAGE_FILE }}

- name: Sign images with GitHub OIDC Token
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
run: |
cosign sign -y quay.io/afxdp-plugins-for-kubernete/${{ matrix.IMAGE_NAME }}:${{ matrix.LABEL }}@${{ steps.build-push-image.outputs.digest }}
cosign sign -y quay.io/afxdp-plugins-for-kubernetes/${{ matrix.IMAGE_NAME }}:${{ matrix.LABEL }}@${{ steps.build-push-image.outputs.digest }}
- name: Generate image attestation
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}

uses: actions/attest-build-provenance@v2
with:
subject-name: quay.io/afxdp-plugins-for-kubernete/${{ matrix.IMAGE_NAME }}
subject-name: quay.io/afxdp-plugins-for-kubernetes/${{ matrix.IMAGE_NAME }}
subject-digest: ${{ steps.build-push-image.outputs.digest }}
push-to-registry: true

0 comments on commit 24127ab

Please sign in to comment.