We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7386db commit 342386fCopy full SHA for 342386f
.github/workflows/validate-generated-code.yml
@@ -58,6 +58,9 @@ jobs:
58
# Extract the tarball, stripping the top-level component
59
tar -xf "${SOLANA_TARBALL}" -C "${SOLANA_INSTALL_DIR}" --strip-components=1 || { echo "Error: Failed to extract Solana CLI tarball."; exit 1; }
60
61
+ echo "Listing contents of Solana installation directory:"
62
+ ls -lR "${SOLANA_INSTALL_DIR}" # List recursively to see the structure
63
+
64
echo "Adding Solana CLI to PATH"
65
echo "${SOLANA_INSTALL_DIR}/bin" >> $GITHUB_PATH
66
0 commit comments