Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/cd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
17 changes: 5 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down