diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index 88181d3..a1c95c4 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -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 }} @@ -65,7 +65,7 @@ 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 }} @@ -73,13 +73,13 @@ jobs: - 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