mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-09 18:11:48 +08:00
13 lines
274 B
Bash
Executable File
13 lines
274 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
set -eEuo pipefail
|
|
IFS=$'\n\t'
|
|
cd "$(dirname "$0")"/..
|
|
|
|
# Update markdown
|
|
#
|
|
# USAGE:
|
|
# ./tools/update-markdown.sh
|
|
|
|
cargo run --manifest-path tools/codegen/Cargo.toml --bin generate-tools-markdown --release
|