We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdac0dc commit 7eb775eCopy full SHA for 7eb775e
.github/workflows/release_sdk_parallel.yml
@@ -10,6 +10,9 @@ on:
10
sdk-version:
11
description: 'The new version for the sdk library.'
12
required: true
13
+ clean-build:
14
+ description: 'Perform a clean build'
15
+ default: 'false'
16
17
jobs:
18
build_targets:
@@ -37,6 +40,7 @@ jobs:
37
40
git config user.email [email protected]
38
41
39
42
- uses: Swatinem/rust-cache@v2
43
+ if: ${{ github.event.inputs.clean-build != 'true' }}
44
with:
45
save-if: ${{ github.ref == 'refs/heads/main' || github.ref == 'main' }}
46
cache-on-failure: true
0 commit comments