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 148660c commit 4089da1Copy full SHA for 4089da1
.github/workflows/build-release.yml
@@ -3,7 +3,13 @@ name: "[builder] CI for releases"
3
on:
4
repository_dispatch:
5
types: build
6
- workflow_dispatch: ~
+ workflow_dispatch:
7
+ inputs:
8
+ ignore-cache:
9
+ description: 'Ignore cache and force build (skip hash check)'
10
+ required: false
11
+ default: false
12
+ type: boolean
13
schedule:
14
- cron: "0 0 * * *"
15
push:
@@ -59,7 +65,7 @@ jobs:
59
65
60
66
build:
61
67
needs: check
62
- if: needs.check.outputs.cache-hit != 'true'
68
+ if: needs.check.outputs.cache-hit != 'true' || inputs.ignore-cache
63
69
runs-on: ubuntu-latest
64
70
permissions:
71
id-token: write
0 commit comments