Skip to content

Added functionalities #4

Added functionalities

Added functionalities #4

Workflow file for this run

name: Container signing
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Docker buildx
uses: docker/[email protected]
- name: Install cosign
uses: sigstore/cosign-installer@main
with:
cosign-release: 'v1.3.1'
- name: Sign the container image
env:
COSIGN_EXPERIMENTAL: "true"
run: |
cosign sign \
${REPO}@${{ steps.push-step.outputs.digest }}