Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install Chainloop
if: ${{ github.event_name != 'pull_request' }}
run: |
curl -sfL https://raw.githubusercontent.com/chainloop-dev/chainloop/8a12fce328929abf012c96a07bddfeaf94c74ed4/docs/static/install.sh | bash -s
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s

- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Install Chainloop
run: |
curl -sfL https://raw.githubusercontent.com/chainloop-dev/chainloop/8a12fce328929abf012c96a07bddfeaf94c74ed4/docs/static/install.sh | bash -s
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s

- name: Initialize Attestation
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/package_chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
steps:
- name: Install Chainloop
run: |
curl -sfL https://raw.githubusercontent.com/chainloop-dev/chainloop/8a12fce328929abf012c96a07bddfeaf94c74ed4/docs/static/install.sh | bash -s
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s

- name: Docker login to Github Packages
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
Expand Down Expand Up @@ -68,7 +68,9 @@ jobs:
app_version=$(cat deployment/chainloop/Chart.yaml | yq .appVersion)

# Force the version that's inside the Chart.yaml file
chainloop attestation init --workflow ${CHAINLOOP_WORKFLOW_NAME} --project ${CHAINLOOP_PROJECT} --version ${app_version}
# and make sure it exists in the project by passing the --existing-version flag
# if it doesn't exist, the attestation will fail, and first we need to create/update/rename the version in the project and re-run the job
chainloop attestation init --workflow ${CHAINLOOP_WORKFLOW_NAME} --project ${CHAINLOOP_PROJECT} --version ${app_version} --existing-version

# Attest Control plane image
chainloop attestation add --name control-plane-image --value "${CONTAINER_CP}"
Expand Down
Loading