From 8447910fee73ca29c427aad5801dc5962ed9cd02 Mon Sep 17 00:00:00 2001 From: lincube Date: Mon, 20 Apr 2026 13:09:13 +0800 Subject: [PATCH] relax publish-pdc precheck to require S3 only --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 06d5be3..ec5cdb1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -757,9 +757,8 @@ jobs: $ErrorActionPreference = "Stop" if ([string]::IsNullOrWhiteSpace($env:S3_ENDPOINT) -or - [string]::IsNullOrWhiteSpace($env:S3_BUCKET) -or - [string]::IsNullOrWhiteSpace($env:PDC_ENDPOINT)) { - throw "Missing required PDC/S3 variables." + [string]::IsNullOrWhiteSpace($env:S3_BUCKET)) { + throw "Missing required S3 variables." } if ([string]::IsNullOrWhiteSpace($env:PDC_SIGNING_KEY)) {