Bumps the development-dependencies group with 1 update: [spring-io/spring-github-workflows](https://github.com/spring-io/spring-github-workflows). Updates `spring-io/spring-github-workflows` from 4 to 5 - [Release notes](https://github.com/spring-io/spring-github-workflows/releases) - [Commits](https://github.com/spring-io/spring-github-workflows/compare/v4...v5) --- updated-dependencies: - dependency-name: spring-io/spring-github-workflows dependency-type: direct:production update-type: version-update:semver-major dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
835 B
YAML
31 lines
835 B
YAML
name: CI SNAPSHOT
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
gradleOptions:
|
|
description: 'The Gradle CLI options: tasks, properties etc.'
|
|
required: false
|
|
type: string
|
|
|
|
push:
|
|
branches:
|
|
- main
|
|
- '*.x'
|
|
|
|
schedule:
|
|
- cron: '0 5 * * *'
|
|
|
|
concurrency:
|
|
group: group-snapshot-for-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-snapshot:
|
|
uses: spring-io/spring-github-workflows/.github/workflows/spring-artifactory-gradle-snapshot.yml@v5
|
|
with:
|
|
gradleTasks: ${{ github.event_name == 'schedule' && '--rerun-tasks --refresh-dependencies' || inputs.gradleOptions }}
|
|
secrets:
|
|
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
|
|
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
|
|
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} |