From bc4d002f11b6b95ad8e860319659456f81bb21d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?A=C3=AFssata=20Ma=C3=AFga?= Date: Thu, 18 Dec 2025 14:46:39 +0100 Subject: [PATCH] source path --- use-ferrocene/action.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/use-ferrocene/action.yaml b/use-ferrocene/action.yaml index dd5cf4b..a1d6d00 100644 --- a/use-ferrocene/action.yaml +++ b/use-ferrocene/action.yaml @@ -17,6 +17,11 @@ inputs: description: "If a `rustup` toolchain should be configured, allowing, for example `cargo +ferrocene build` (conflicts with `uninstall-rustup: true`)" required: false default: "true" + uninstall-criticalup: + description: Some workflow require uninstalling criticalup to avoid conflicts + default: false + required: false + runs: using: composite @@ -65,3 +70,12 @@ runs: - name: Output cargo version shell: bash run: echo $(cargo -V) + + - name: Run cleanup workflow + if: ${{ inputs.uninstall-criticalup == true }} + shell: bash + run: | + criticalup remove + criticalup clean + +