This is an automated email from the ASF dual-hosted git repository.
pkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/main by this push:
new 4efee0cd31 Fix Nexus URL for snapshots
4efee0cd31 is described below
commit 4efee0cd317cfee7087c65e2ecb3893d13be3358
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Tue Feb 18 23:55:11 2025 +0100
Fix Nexus URL for snapshots
---
.github/workflows/build.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index d9122d7b80..2e53eb5618 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -70,7 +70,7 @@ jobs:
name: "verify-reproducibility (${{ needs.deploy-release.result ==
'success' && needs.deploy-release.outputs.project-version ||
needs.deploy-snapshot.outputs.project-version }})"
uses:
apache/logging-parent/.github/workflows/verify-reproducibility-reusable.yaml@rel/12.0.0
with:
- nexus-url: ${{ needs.deploy-release.result == 'success' &&
needs.deploy-release.outputs.nexus-url ||
needs.deploy-snapshot.outputs.nexus-url }}
+ nexus-url: ${{ needs.deploy-release.result == 'success' &&
needs.deploy-release.outputs.nexus-url ||
'https://repository.apache.org/content/groups/snapshots' }}
# Encode the `runs-on` input as JSON array
runs-on: '["ubuntu-latest", "macos-latest", "windows-latest"]'