Skip to content

Commit 87c34d8

Browse files
authored
Fix link to download crd-ref-docs
This workflow has been failing for a while because the binary we downloaded is no longer available. This PR updates the workflow to download an available file.
1 parent 204da32 commit 87c34d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/generate-crd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
# Download crd-ref-docs utility for doc generation.
4040
- name: Download crd-ref-docs
4141
run: |
42-
curl -fLO https://github.com/elastic/crd-ref-docs/releases/download/v0.1.0/crd-ref-docs
42+
curl -fLO https://github.com/elastic/crd-ref-docs/releases/download/v0.1.0/crd-ref-docs_0.1.0_Linux_x86_64.tar.gz
43+
tar -xzf crd-ref-docs_0.1.0_Linux_x86_64.tar.gz
4344
chmod +x crd-ref-docs
4445
sudo mv crd-ref-docs /usr/local/bin/
4546
# Generate Operator CRD documentation.

0 commit comments

Comments
 (0)