mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-21 15:10:27 +00:00
Do not list tools names manually in tools/publish.sh
This commit is contained in:
@@ -12,8 +12,6 @@ See JSON files in `tools/codegen/base` directory for examples of the manifest.
|
|||||||
./tools/manifest.sh <tool>
|
./tools/manifest.sh <tool>
|
||||||
```
|
```
|
||||||
|
|
||||||
3\. Add tool name to `tools` variable in `tools/publish.sh`.
|
3\. Add tool name to test matrix in `.github/workflows/ci.yml`.
|
||||||
|
|
||||||
4\. Add tool name to test matrix in `.github/workflows/ci.yml`.
|
4\. Add tool name to table in "Supported tools" section in `README.md`.
|
||||||
|
|
||||||
5\. Add tool name to table in "Supported tools" section in `README.md`.
|
|
||||||
|
|||||||
@@ -79,27 +79,14 @@ if [[ -n "${tags}" ]]; then
|
|||||||
git commit -m "Release ${version}"
|
git commit -m "Release ${version}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tools=(
|
tools=()
|
||||||
cargo-binstall
|
for tool in tools/codegen/base/*.json; do
|
||||||
cargo-deny
|
tools+=("$(basename "${tool%.*}")")
|
||||||
cargo-hack
|
done
|
||||||
cargo-llvm-cov
|
# Aliases
|
||||||
cargo-minimal-versions
|
tools+=(nextest)
|
||||||
cargo-nextest
|
# Not manifest-base
|
||||||
cargo-udeps
|
tools+=(valgrind)
|
||||||
cargo-valgrind
|
|
||||||
cross
|
|
||||||
mdbook
|
|
||||||
mdbook-linkcheck
|
|
||||||
nextest
|
|
||||||
parse-changelog
|
|
||||||
protoc
|
|
||||||
shellcheck
|
|
||||||
shfmt
|
|
||||||
valgrind
|
|
||||||
wasm-pack
|
|
||||||
wasmtime
|
|
||||||
)
|
|
||||||
|
|
||||||
(
|
(
|
||||||
set -x
|
set -x
|
||||||
|
|||||||
Reference in New Issue
Block a user