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.
gradleOptions
ci-snapshot.yml
1 parent 899786e commit 7df1261Copy full SHA for 7df1261
.github/workflows/ci-snapshot.yml
@@ -2,6 +2,11 @@ name: CI SNAPSHOT
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ gradleOptions:
7
+ description: 'The Gradle CLI options: tasks, properties etc.'
8
+ required: false
9
+ type: string
10
11
push:
12
branches:
@@ -19,7 +24,7 @@ jobs:
19
24
build-snapshot:
20
25
uses: spring-io/spring-github-workflows/.github/workflows/spring-artifactory-gradle-snapshot.yml@main
21
26
with:
22
- gradleTasks: ${{ github.event_name == 'schedule' && '--rerun-tasks' || '' }}
27
+ gradleTasks: ${{ github.event_name == 'schedule' && '--rerun-tasks --refresh-dependencies' || inputs.gradleOptions }}
23
28
secrets:
29
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
30
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
0 commit comments