Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure SLSA Attestations are Generated when Possible #889

Merged
merged 7 commits into from
Dec 26, 2023
Merged
Changes from 6 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
11 changes: 11 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,19 @@
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0

- name: Install tejolote
uses: kubernetes-sigs/release-actions/setup-tejolote@dd08496c83441d6477114cc0555b96d404dacff7 # v0.1.2

- name: Run tejolote
env:
TAG: ${{ github.ref_name }}
run: |

Check failure on line 23 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / presubmit (1.23.x)

shellcheck reported issue in this script: SC2086:info:1:64: Double quote to prevent globbing and word splitting

Check failure on line 23 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / presubmit (1.24.x)

shellcheck reported issue in this script: SC2086:info:1:64: Double quote to prevent globbing and word splitting

Check failure on line 23 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / presubmit (1.25.x)

shellcheck reported issue in this script: SC2086:info:1:64: Double quote to prevent globbing and word splitting

Check failure on line 23 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / presubmit (1.26.x)

shellcheck reported issue in this script: SC2086:info:1:64: Double quote to prevent globbing and word splitting

Check failure on line 23 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / presubmit (1.27.x)

shellcheck reported issue in this script: SC2086:info:1:64: Double quote to prevent globbing and word splitting

Check failure on line 23 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / presubmit (1.28.x)

shellcheck reported issue in this script: SC2086:info:1:64: Double quote to prevent globbing and word splitting
tejolote attest --artifacts github://kubernetes-sigs/karpenter/${TAG} github://kubernetes-sigs/karpenter/"${{ github.run_id }}" --output karpenter.intoto.json --sign
jonathan-innis marked this conversation as resolved.
Show resolved Hide resolved

- name: Create Github Release
uses: marvinpinto/action-automatic-releases@919008cf3f741b179569b7a6fb4d8860689ab7f0 # v1.2.1
with:
jonathan-innis marked this conversation as resolved.
Show resolved Hide resolved
files: karpenter.intoto.json
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
Loading