fix: Fix various broken links in docs (#779) - #858
Open
xeniape wants to merge 4 commits into
Open
Conversation
* fix: Fix broken link to AirflowCluster CRD docs * broken link and external links * broken link and external links
lfrancke
approved these changes
Sep 8, 2026
Member
|
CI fails |
Member
I took a look, and it seems like something is broken. An interpolation, or replacement. I reran it, but same error. I'll see if I can figure it out. |
Member
Author
Member
This one is different. Seems to be to do with inputs on this action: |
Member
|
My guess is that the inline interpolation is no longer allowed: run: curl --output ${{steps.cargo.outputs.dir}}/${{inputs.bin || inputs.crate}} https://github.com/stackabletech/cargo-install-action/releases/download/${{inputs.crate}}/${{inputs.bin || inputs.crate}}-${{steps.arch.outputs.arch}} --location --silent --show-error --fail --retry 5It will instead need some env vars set, like: env:
INPUT_CRATE: ${{inputs.crate}}
INPUT_BIN: ${{inputs.bin || inputs.crate}}
run: curl --output ${{steps.cargo.outputs.dir}}/ https://github.com/stackabletech/cargo-install-action/releases/download/$INPUT_CRATE/$INPUT_BIN-${{steps.arch.outputs.arch}} --location --silent --show-error --fail --retry 5The rest seems to allow interpolations (ie: |
ci(build): Use newer pinned cargo install action
Member
|
Fixed in #859 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
Please add a description here. This will become the commit message of the merge request later.
Definition of Done Checklist
Author
Reviewer
Acceptance
type/deprecationlabel & add to the deprecation scheduletype/experimentallabel & add to the experimental features trackerfix: Fix broken link to AirflowCluster CRD docs
broken link and external links
broken link and external links