You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
303 B
Bash
13 lines
303 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
: "${BUILDX_CMD=docker buildx}"
|
|
: "${FORMATS=md}"
|
|
|
|
output=$(mktemp -d -t buildx-output.XXXXXXXXXX)
|
|
(set -x ; DOCS_FORMATS=$FORMATS ${BUILDX_CMD} bake --set "*.output=$output" update-docs)
|
|
rm -rf ./docs/reference/*
|
|
cp -R "$output"/out/* ./docs/
|
|
rm -rf "$output"
|