diff --git a/.github/workflows/cd-release.yml b/.github/workflows/cd-release.yml index 314ce29..0ff6f8c 100644 --- a/.github/workflows/cd-release.yml +++ b/.github/workflows/cd-release.yml @@ -17,9 +17,9 @@ jobs: uses: ./.github/workflows/ci-maven.yml secrets: inherit - # release: - # needs: ci - # uses: ./.github/workflows/cd-deploy.yml - # secrets: inherit - # with: - # environment: release + release: + needs: ci + uses: ./.github/workflows/cd-deploy.yml + secrets: inherit + with: + environment: release diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 128e4e9..04eadb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,20 +41,13 @@ jobs: echo "labels=$LABELS" >> $GITHUB_OUTPUT echo "target-branch=release/$VERSION" >> $GITHUB_OUTPUT - # ci: - # needs: variables - # uses: ./.github/workflows/ci-maven.yml - # secrets: inherit - - # gates: - # needs: ci - # if: success() - # uses: ./.github/workflows/ci-gates.yml - # secrets: inherit + ci: + needs: variables + uses: ./.github/workflows/ci-maven.yml + secrets: inherit pull-request: - # needs: [gates, variables] - needs: variables + needs: [ci, variables] if: success() uses: ./.github/workflows/ci-pull-request.yml secrets: inherit