Fix path for reusable workflows

This commit is contained in:
Artem Bilan
2023-10-23 14:57:40 -04:00
parent d94d0c02c9
commit 9b49778018
5 changed files with 5 additions and 5 deletions

View File

@@ -8,5 +8,5 @@ on:
jobs:
build_snapshot:
uses: .github/workflows/spring-artifactory-gradle-snapshot.yml
uses: ./.github/workflows/spring-artifactory-gradle-snapshot.yml
secrets: inherit

View File

@@ -7,4 +7,4 @@ on:
jobs:
build:
uses: .github/workflows/spring-gradle-pull-request-build.yml
uses: ./.github/workflows/spring-gradle-pull-request-build.yml

View File

@@ -12,7 +12,7 @@ on:
jobs:
release_to_central:
uses: .github/workflows/spring-artifactory-promote-central.yml
uses: ./.github/workflows/spring-artifactory-promote-central.yml
with:
buildName: ${{ inputs.buildName }}
buildNumber: ${{ inputs.buildNumber }}

View File

@@ -14,7 +14,7 @@ on:
jobs:
promote_milestone:
uses: .github/workflows/spring-artifactory-promote-milestone.yml
uses: ./.github/workflows/spring-artifactory-promote-milestone.yml
with:
buildName: ${{ inputs.buildName }}
buildNumber: ${{ inputs.buildNumber }}

View File

@@ -12,7 +12,7 @@ on:
jobs:
staging:
uses: .github/workflows/spring-artifactory-gradle-release-staging.yml
uses: ./.github/workflows/spring-artifactory-gradle-release-staging.yml
with:
releaseVersion: ${{ inputs.releaseVersion }}
nextDevelopmentVersion: ${{ inputs.nextDevelopmentVersion }}