Skip to content

Commit 9b49778

Browse files
committed
Fix path for reusable workflows
1 parent d94d0c0 commit 9b49778

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ on:
88

99
jobs:
1010
build_snapshot:
11-
uses: .github/workflows/spring-artifactory-gradle-snapshot.yml
11+
uses: ./.github/workflows/spring-artifactory-gradle-snapshot.yml
1212
secrets: inherit

.github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ on:
77

88
jobs:
99
build:
10-
uses: .github/workflows/spring-gradle-pull-request-build.yml
10+
uses: ./.github/workflows/spring-gradle-pull-request-build.yml

.github/workflows/promote-ga-to-central.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
release_to_central:
15-
uses: .github/workflows/spring-artifactory-promote-central.yml
15+
uses: ./.github/workflows/spring-artifactory-promote-central.yml
1616
with:
1717
buildName: ${{ inputs.buildName }}
1818
buildNumber: ${{ inputs.buildNumber }}

.github/workflows/promote-milestone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
promote_milestone:
17-
uses: .github/workflows/spring-artifactory-promote-milestone.yml
17+
uses: ./.github/workflows/spring-artifactory-promote-milestone.yml
1818
with:
1919
buildName: ${{ inputs.buildName }}
2020
buildNumber: ${{ inputs.buildNumber }}

.github/workflows/release-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
staging:
15-
uses: .github/workflows/spring-artifactory-gradle-release-staging.yml
15+
uses: ./.github/workflows/spring-artifactory-gradle-release-staging.yml
1616
with:
1717
releaseVersion: ${{ inputs.releaseVersion }}
1818
nextDevelopmentVersion: ${{ inputs.nextDevelopmentVersion }}

0 commit comments

Comments
 (0)