From 9b497780189537fa79832c9387ed46ac8279a163 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 23 Oct 2023 14:57:40 -0400 Subject: [PATCH] Fix path for reusable workflows --- .github/workflows/ci-snapshot.yml | 2 +- .github/workflows/pr-build.yml | 2 +- .github/workflows/promote-ga-to-central.yml | 2 +- .github/workflows/promote-milestone.yml | 2 +- .github/workflows/release-staging.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-snapshot.yml b/.github/workflows/ci-snapshot.yml index 8a20704..348e21d 100644 --- a/.github/workflows/ci-snapshot.yml +++ b/.github/workflows/ci-snapshot.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index c24951b..18d2b4d 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -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 diff --git a/.github/workflows/promote-ga-to-central.yml b/.github/workflows/promote-ga-to-central.yml index e1a44c7..604895f 100644 --- a/.github/workflows/promote-ga-to-central.yml +++ b/.github/workflows/promote-ga-to-central.yml @@ -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 }} diff --git a/.github/workflows/promote-milestone.yml b/.github/workflows/promote-milestone.yml index 3eeca74..1d9b263 100644 --- a/.github/workflows/promote-milestone.yml +++ b/.github/workflows/promote-milestone.yml @@ -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 }} diff --git a/.github/workflows/release-staging.yml b/.github/workflows/release-staging.yml index 8388145..0c2f5aa 100644 --- a/.github/workflows/release-staging.yml +++ b/.github/workflows/release-staging.yml @@ -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 }}