Skip to content

fix the issue with the chainloop labs bin path #36

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

Merged
merged 1 commit into from
Oct 21, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/chainloop_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,27 +62,27 @@ jobs:
# based on the configuration in .chainloop.yml
- name: Add all artifacts, reports, and metadata to attestation.
run: |
source <(/usr/local/bin/chainloop/c8l source)
source <(/usr/local/bin/chainloop_bin/c8l source)
chainloop_attestation_add_from_yaml ${{ inputs.attestation_name }}

- name: Validate Collected Artifacts and Record Attestation
if: ${{ success() }}
run: |
source <(/usr/local/bin/chainloop/c8l source)
source <(/usr/local/bin/chainloop_bin/c8l source)
chainloop_attestation_push
env:
CHAINLOOP_SIGNING_KEY: ${{ secrets.signing_key }}
CHAINLOOP_SIGNING_PASSWORD: ${{ secrets.signing_key_password }}

- name: Generate a summary report
run: |
source <(/usr/local/bin/chainloop/c8l source)
source <(/usr/local/bin/chainloop_bin/c8l source)
chainloop_generate_github_summary

- name: Mark attestation as failed
if: ${{ failure() }}
run: |
source <(/usr/local/bin/chainloop/c8l source)
source <(/usr/local/bin/chainloop_bin/c8l source)
chainloop attestation reset --remote-state --attestation-id ${CHAINLOOP_ATTESTATION_ID}
chainloop_generate_github_summary_on_failure

Expand Down