mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
749 B
19 lines
749 B
name: Publish Release Assets to Asset Transparency Log
|
|
|
|
on:
|
|
release:
|
|
types: [published, created, edited, released]
|
|
|
|
jobs:
|
|
github_release_asset_transparency_log_publish_job:
|
|
runs-on: ubuntu-latest
|
|
name: Publish GitHub release asset digests to https://beta-asset.transparencylog.net
|
|
steps:
|
|
- name: Gather URLs from GitHub release and publish
|
|
id: asset-transparency
|
|
uses: transparencylog/github-releases-asset-transparency-verify-action@c77874b4514ae4003994ece9582675195fe012e2 # v11
|
|
- name: List verified and published URLs
|
|
run: echo "Verified URLs ${{ steps.asset-transparency.outputs.verified }}"
|
|
- name: List failed URLs
|
|
run: echo "Failed URLs ${{ steps.asset-transparency.outputs.failed }}"
|