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/chainloop_contract_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Install Chainloop
run: |
curl -sfL https://raw.githubusercontent.com/chainloop-dev/chainloop/01ad13af08950b7bfbc83569bea207aeb4e1a285/docs/static/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}

- name: Checkout repository
uses: actions/checkout@v4.1.4
Expand Down
2 changes: 1 addition & 1 deletion tools/c8l
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ chainloop_bin_install() {
install_chainloop_cli() {
mkdir -p ${CHAINLOOP_TMP_DIR} $CHAINLOOP_BIN_PATH
log "Installing Chainloop CLI"
url_chainloop_cli="https://raw.githubusercontent.com/chainloop-dev/chainloop/eb53f4e8ce3c35251553efc77b7e04e792b2c992/docs/static/install.sh"
url_chainloop_cli="https://docs.chainloop.dev/install.sh"
if [ -n "${CHAINLOOP_VERSION}" ]; then
curl -sfL "${url_chainloop_cli}" | bash -s -- --version v${CHAINLOOP_VERSION} --path $CHAINLOOP_BIN_PATH
else
Expand Down
2 changes: 1 addition & 1 deletion tools/src/lib/chainloop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ chainloop_bin_install() {
install_chainloop_cli() {
mkdir -p ${CHAINLOOP_TMP_DIR} $CHAINLOOP_BIN_PATH
log "Installing Chainloop CLI"
url_chainloop_cli="https://raw.githubusercontent.com/chainloop-dev/chainloop/eb53f4e8ce3c35251553efc77b7e04e792b2c992/docs/static/install.sh"
url_chainloop_cli="https://docs.chainloop.dev/install.sh"
if [ -n "${CHAINLOOP_VERSION}" ]; then
curl -sfL "${url_chainloop_cli}" | bash -s -- --version v${CHAINLOOP_VERSION} --path $CHAINLOOP_BIN_PATH
else
Expand Down
4 changes: 2 additions & 2 deletions tools/test/test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ setup() {

# Abats test_tags=bats:focus
@test "full attestation flow" {
export CHAINLOOP_WORKFLOW_NAME="chainloop-labs-tests"
export CHAINLOOP_PROJECT_NAME="chainloop"
export CHAINLOOP_WORKFLOW_NAME="labs-tests"
export CHAINLOOP_PROJECT_NAME="labs"
cp ./c8l /tmp
cd /tmp
mkdir -p .c8l_cache
Expand Down