Skip to content

Commit ac849e7

Browse files
fix(ci): justfile, extra just install
Signed-off-by: Victor Adossi <[email protected]>
1 parent 82bbaef commit ac849e7

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/actions/mdbook/action.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ runs:
4848

4949
- uses: extractions/setup-just@v2
5050

51-
- uses: taiki-e/cache-cargo-install-action@4d586f211d9b0bca9e7b59e57e2a0febf36c0929 # v2.1.1
52-
with:
53-
tool: "just"
54-
5551
- uses: taiki-e/cache-cargo-install-action@4d586f211d9b0bca9e7b59e57e2a0febf36c0929 # v2.1.1
5652
with:
5753
tool: "mdbook@${{ inputs.mdbook-version }}"

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ book_output_dir := env_var_or_default("BOOK_OUTPUT_DIR", "./component-model/book
1717
# Build the sitemap
1818
@build-sitemap:
1919
{{python}} {{scripts_dir}}/generate_sitemap.py --domain "{{publish_domain}}" --higher-priority "design" --output-path {{sitemap_output_path}}
20-
if [[ ! -f "{{book_output_dir}}/index.html" ]]; then \
20+
if [ ! -f "{{book_output_dir}}/index.html" ]; then \
2121
echo "[error] index.html @ [{{book_output_dir}}] is missing. Build or path misconfigured"; \
2222
exit 1; \
2323
fi

0 commit comments

Comments
 (0)