Skip to content

Commit 532cade

Browse files
committed
Update github workflows
1 parent 6284e1d commit 532cade

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and Deploy
33
on:
44
push:
55
branches:
6-
- main
6+
- '**'
77
schedule:
88
- cron: '0 10 * * *' # Once per day at 10am UTC
99

@@ -80,7 +80,7 @@ jobs:
8080
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
8181
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
8282
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
83-
run: ./gradlew test --refresh-dependencies -Duser.name=spring-builds+github -PartifactoryUsername="$ARTIFACTORY_USERNAME" -PartifactoryPassword="$ARTIFACTORY_PASSWORD" -PforceMavenRepositories=snapshot -PspringFrameworkVersion='5.3.+' -PspringSecurityVersion='5.7.+' -PlocksDisabled --stacktrace
83+
run: ./gradlew test --refresh-dependencies -Duser.name=spring-builds+github -PartifactoryUsername="$ARTIFACTORY_USERNAME" -PartifactoryPassword="$ARTIFACTORY_PASSWORD" -PforceMavenRepositories=snapshot -PspringFrameworkVersion='5.3.+' -PspringSecurityVersion='5.8.+' -PlocksDisabled --stacktrace
8484
deploy_artifacts:
8585
name: Deploy Artifacts
8686
needs: [build, snapshot_tests]

.github/workflows/pr-build-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: PR build
33
on:
44
pull_request:
55
branches:
6-
- main
6+
- '**'
77

88
jobs:
99
build:

0 commit comments

Comments
 (0)