8000 Cosign images by jkreileder · Pull Request #1 · jkreileder/exporter-merger · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Jan 7, 2024. It is now read-only.

Cosign images #1

Merged
merged 1 commit into from
May 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,15 @@ on:
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Cosign
uses: sigstore/cosign-installer@main
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
Expand Down Expand Up @@ -73,3 +79,9 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Sign the images with GitHub OIDC Token **not production ready**
if: github.event_name != 'pull_request'
run: cosign sign --force --recursive ${TAGS}
env:
TAGS: ${{ steps.meta.outputs.tags }}
COSIGN_EXPERIMENTAL: 1
0