* Fix introduction link * Restore staking guide pages * Remove Edit this page link * Fix broken wallet guide link * Restore lost images * Fixup URL paths to match gitbook style * Refactor wallet guide READMEs and clean up URLs * Remove lingering gitbook files * Refactor all README files to keep consistent linking * Updte homepage tile links Co-authored-by: publish-docs.sh <maintainers@solana.com>
26 lines
588 B
Bash
Executable File
26 lines
588 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
# shellcheck source=ci/env.sh
|
|
source ../ci/env.sh
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
: "${rust_stable_docker_image:=}" # Pacify shellcheck
|
|
|
|
# shellcheck source=ci/rust-version.sh
|
|
source ../ci/rust-version.sh
|
|
../ci/docker-run.sh "$rust_stable_docker_image" docs/build-cli-usage.sh
|
|
../ci/docker-run.sh "$rust_stable_docker_image" docs/convert-ascii-to-svg.sh
|
|
./set-solana-release-tag.sh
|
|
|
|
# Build from /src into /build
|
|
npm run build
|
|
|
|
# Publish only from merge commits and release tags
|
|
if [[ -n $CI ]]; then
|
|
if [[ -z $CI_PULL_REQUEST ]]; then
|
|
./publish-docs.sh
|
|
fi
|
|
fi
|