This is an automated email from the ASF dual-hosted git repository. stevedlawrence pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/daffodil-infrastructure.git
commit 7e4dbbf38670c3c3068887e9c97ff3991d462a2d Author: Steve Lawrence <[email protected]> AuthorDate: Mon Aug 10 12:51:29 2026 -0400 Remove do_publish check for ssl.com signing for testing To simplfy testing of ssl.com signing, remove the do_publish requirement so that we can sign exe's without needing to actually create and publish a release candidate. This commit should be reverted once we confirm that signing works as expected to ensure we only sign artifacts that will actually be published. --- actions/release-candidate/dist/post/index.js | 2 +- actions/release-candidate/src/post.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/release-candidate/dist/post/index.js b/actions/release-candidate/dist/post/index.js index a7c90b3..63bec32 100644 --- a/actions/release-candidate/dist/post/index.js +++ b/actions/release-candidate/dist/post/index.js @@ -125632,7 +125632,7 @@ async function run() { const ssl_com_username = core.getInput("ssl_com_username"); const ssl_com_password = core.getInput("ssl_com_password"); const ssl_com_secret = core.getInput("ssl_com_secret"); - const do_ssl_com_sign = do_publish && ssl_com_username; + const do_ssl_com_sign = ssl_com_username; // sign/checksum all artifacts const artifacts = fs.readdirSync(artifact_dir, { recursive: true, withFileTypes: true }); diff --git a/actions/release-candidate/src/post.js b/actions/release-candidate/src/post.js index f3902e2..a4ffb08 100644 --- a/actions/release-candidate/src/post.js +++ b/actions/release-candidate/src/post.js @@ -41,7 +41,7 @@ async function run() { const ssl_com_username = core.getInput("ssl_com_username"); const ssl_com_password = core.getInput("ssl_com_password"); const ssl_com_secret = core.getInput("ssl_com_secret"); - const do_ssl_com_sign = do_publish && ssl_com_username; + const do_ssl_com_sign = ssl_com_username; // sign/checksum all artifacts const artifacts = fs.readdirSync(artifact_dir, { recursive: true, withFileTypes: true });
