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 f256c39 commit 79fe4e6Copy full SHA for 79fe4e6
1 file changed
.github/workflows/update-docs-data.yaml
@@ -75,12 +75,15 @@ jobs:
75
- name: Generate docs data
76
working-directory: docs-data-updater
77
run: |
78
- # Run the data generation script
79
- pnpm start
+ # Silence all output: error messages can include RPC URLs with
+ # embedded API keys, and this public repo's logs are world-readable
80
+ pnpm start > /dev/null 2>&1
81
82
- name: Copy generated markdown files to docs data directory
83
84
# Copy the three generated markdown files from docs-data-updater/data/ to data/
85
+ # (data/ is gitignored since #156, so it doesn't exist in a fresh checkout)
86
+ mkdir -p data
87
if [ -d "docs-data-updater/data" ]; then
88
# Copy the specific generated files
89
for file in chain-details.md supported-chains.md supported-tokens.md; do
0 commit comments