From 956b26e4b21c0eff7dcec255d8926c0c4cee51d8 Mon Sep 17 00:00:00 2001 From: Andrew Fischer Date: Thu, 6 Nov 2025 23:51:19 -0800 Subject: [PATCH] fix: rename workflow files to use .yaml suffix for OIDC compatibility The OIDC trusted publishing connection between GitHub Actions and npmjs.com was failing because the workflow was configured as publish.yaml in the npm OIDC settings, but the actual file was named publish.yml. Renamed both workflow files to use the .yaml suffix (the preferred suffix according to YAML.org[1]) instead of updating the OIDC configuration. [1]: https://yaml.org/faq.html Ticket: VL-3686 --- .github/workflows/{ci.yml => ci.yaml} | 0 .github/workflows/{publish.yml => publish.yaml} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{ci.yml => ci.yaml} (100%) rename .github/workflows/{publish.yml => publish.yaml} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yaml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/ci.yaml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yaml similarity index 100% rename from .github/workflows/publish.yml rename to .github/workflows/publish.yaml