Skip to content

Commit

Permalink
SRE-1913 - Move from workflow to action
Browse files Browse the repository at this point in the history
  • Loading branch information
Sivli-Embir committed Jul 15, 2024
1 parent 7389560 commit de7196d
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 44 deletions.
38 changes: 38 additions & 0 deletions .github/actions/sign_ghcr/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Sign Package Collector Image
description: |
This action is responsible for signing the Docker image of the Package Collector
and pushing the signature to the GitHub Container Registry (GHCR).
inputs:
image-name:
description: 'The name of the image.'
required: true
image-digest:
description: 'The digest of the image.'
required: true
PACKAGE_GITHUB_TOKEN:
description: 'GitHub Token to authenticate and sign with'
required: true

runs:
using: 'composite'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Cosign
uses: sigstore/cosign-installer@v3
- name: Log into registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.PACKAGE_GITHUB_TOKEN }}
# Sign the Docker image (Using OIDC Token for "keyless signing")
# https://github.com/sigstore/cosign-installer
- name: Sign the images with GH OIDC Token
shell: bash
run: |
cosign sign -d -y $IMAGE
env:
COSIGN_REPOSITORY: ghcr.io/${{ inputs.image-name }}-signatures
IMAGE: ghcr.io/${{ inputs.image-name }}@${{ inputs.image-digest }}
44 changes: 0 additions & 44 deletions .github/workflows/sign_ghcr.yaml

This file was deleted.

0 comments on commit de7196d

Please sign in to comment.