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://docs.chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}
curl -sfL https://dl.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 .github/workflows/chainloop_github_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

- name: Install Chainloop
run: |
curl -sfL https://docs.chainloop.dev/install.sh | bash -s
curl -sfL https://dl.chainloop.dev/install.sh | bash -s

- name: Initialize Attestation
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chainloop_onboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
- name: Install Chainloop
run: |
curl -sfL https://docs.chainloop.dev/install.sh | bash -s
curl -sfL https://dl.chainloop.dev/install.sh | bash -s

- id: set_workflow_name
name: Set workflow name
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://docs.chainloop.dev/install.sh"
url_chainloop_cli="https://dl.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://docs.chainloop.dev/install.sh"
url_chainloop_cli="https://dl.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
Loading