File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 38
38
8
39
39
17
40
40
site-enabled : true
41
- reproducibility-check-enabled : ${{ startsWith(github.ref_name, 'release/') }}
41
+ reproducibility-check-enabled : false
42
42
develocity-enabled : ${{ ! startsWith(github.ref_name, 'release/') }}
43
43
44
44
deploy-snapshot :
73
73
8
74
74
17
75
75
project-id : log4j
76
+
77
+ verify-reproducibility :
78
+ needs : [ deploy-snapshot, deploy-release ]
79
+ if : ${{ always() && (needs.deploy-snapshot.result == 'success' || needs.deploy-release.result == 'success') }}
80
+ uses : apache/logging-parent/.github/workflows/verify-reproducibility-reusable.yaml@rel/12.0.0
81
+ with :
82
+ nexus-url : ${{ needs.deploy-release.result == 'success' && needs.deploy-release.outputs.nexus-url || needs.deploy-snapshot.outputs.nexus-url }}
83
+ # Checkout the repository by branch name, since the deployment job might add commits to the branch
84
+ ref : ${{ github.ref_name }}
85
+ # Encode the `runs-on` input as JSON array
86
+ runs-on : ' ["ubuntu-latest", "macos-latest", "windows-latest"]'
You can’t perform that action at this time.
0 commit comments