Skip to content

Commit ae55b3a

Browse files
committed
Add version to job name
1 parent e2a001b commit ae55b3a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ jobs:
7979
verify-reproducibility:
8080
needs: [ deploy-snapshot, deploy-release ]
8181
if: ${{ always() && (needs.deploy-snapshot.result == 'success' || needs.deploy-release.result == 'success') }}
82+
name: "Verify reproducibility (`${{ needs.deploy-release.result == 'success' && needs.deploy-release.outputs.project-version || needs.deploy-snapshot.outputs.project-version }}`)"
8283
uses: apache/logging-parent/.github/workflows/verify-reproducibility-reusable.yaml@feature/reproducibility-check
8384
with:
8485
nexus-url: ${{ needs.deploy-release.result == 'success' && needs.deploy-release.outputs.nexus-url || needs.deploy-snapshot.outputs.nexus-url }}
@@ -91,6 +92,7 @@ jobs:
9192
integration-test:
9293
needs: [ deploy-snapshot, deploy-release ]
9394
if: ${{ always() && (needs.deploy-snapshot.result == 'success' || needs.deploy-release.result == 'success') }}
95+
name: "Integration tests (`${{ needs.deploy-release.result == 'success' && needs.deploy-release.outputs.project-version || needs.deploy-snapshot.outputs.project-version }}`)"
9496
uses: apache/logging-log4j-samples/.github/workflows/integration-test.yaml@main
9597
with:
9698
log4j-version: ${{ needs.deploy-release.result == 'success' && needs.deploy-release.outputs.project-version || needs.deploy-snapshot.outputs.project-version }}

0 commit comments

Comments
 (0)