Skip to content

Commit 8a1a3f6

Browse files
committed
Add Toml cli install back
1 parent 6ca3bde commit 8a1a3f6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/actions/setup-all/action.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,16 @@ runs:
153153
if: inputs.node_version != ''
154154
with:
155155
node-version: ${{ inputs.node_version }}
156+
157+
- uses: actions/cache@v4
158+
name: Cache Toml Cli
159+
id: cache-toml-cli
160+
with:
161+
path: |
162+
~/.cargo/bin/toml
163+
key: toml-cli-${{ runner.os }}-v0002
164+
165+
- name: Install toml-cli
166+
run: (cargo install toml-cli || true)
167+
if: steps.cache-toml-cli.outputs.cache-hit != 'true'
168+
shell: bash

0 commit comments

Comments
 (0)