From 9c350e9f2f6e8390f2c2df2668b95bd03ef3d8e5 Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Wed, 6 May 2026 18:56:23 -0500 Subject: [PATCH] fix: use valid Artifact Registry package IDs (no slashes) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package IDs must contain only letters, numbers, periods, hyphens and underscores. el/elc → el-elc, el/el_runtime.c → el-runtime-c, etc. --- .gitea/workflows/ci-dev.yaml | 6 +++--- .gitea/workflows/ci-stage.yaml | 6 +++--- .gitea/workflows/sdk-release.yaml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci-dev.yaml b/.gitea/workflows/ci-dev.yaml index 23540fb..6f819ad 100644 --- a/.gitea/workflows/ci-dev.yaml +++ b/.gitea/workflows/ci-dev.yaml @@ -179,7 +179,7 @@ jobs: --repository=foundation-dev \ --location=us-central1 \ --project=neuron-785695 \ - --package=el/elc \ + --package=el-elc \ --version="${VERSION}" \ --source=dist/platform/elc @@ -187,7 +187,7 @@ jobs: --repository=foundation-dev \ --location=us-central1 \ --project=neuron-785695 \ - --package=el/el_runtime.c \ + --package=el-runtime-c \ --version="${VERSION}" \ --source=el-compiler/runtime/el_runtime.c @@ -195,7 +195,7 @@ jobs: --repository=foundation-dev \ --location=us-central1 \ --project=neuron-785695 \ - --package=el/el_runtime.h \ + --package=el-runtime-h \ --version="${VERSION}" \ --source=el-compiler/runtime/el_runtime.h diff --git a/.gitea/workflows/ci-stage.yaml b/.gitea/workflows/ci-stage.yaml index 52aa73e..3ad7a50 100644 --- a/.gitea/workflows/ci-stage.yaml +++ b/.gitea/workflows/ci-stage.yaml @@ -189,7 +189,7 @@ jobs: --repository=foundation-stage \ --location=us-central1 \ --project=neuron-785695 \ - --package=el/elc \ + --package=el-elc \ --version="${VERSION}" \ --source=dist/platform/elc @@ -197,7 +197,7 @@ jobs: --repository=foundation-stage \ --location=us-central1 \ --project=neuron-785695 \ - --package=el/el_runtime.c \ + --package=el-runtime-c \ --version="${VERSION}" \ --source=el-compiler/runtime/el_runtime.c @@ -205,7 +205,7 @@ jobs: --repository=foundation-stage \ --location=us-central1 \ --project=neuron-785695 \ - --package=el/el_runtime.h \ + --package=el-runtime-h \ --version="${VERSION}" \ --source=el-compiler/runtime/el_runtime.h diff --git a/.gitea/workflows/sdk-release.yaml b/.gitea/workflows/sdk-release.yaml index 12ebb9a..d511e80 100644 --- a/.gitea/workflows/sdk-release.yaml +++ b/.gitea/workflows/sdk-release.yaml @@ -305,7 +305,7 @@ jobs: --repository=foundation-prod \ --location=us-central1 \ --project=neuron-785695 \ - --package=el/elc \ + --package=el-elc \ --version="${VERSION}" \ --source=dist/platform/elc @@ -313,7 +313,7 @@ jobs: --repository=foundation-prod \ --location=us-central1 \ --project=neuron-785695 \ - --package=el/el_runtime.c \ + --package=el-runtime-c \ --version="${VERSION}" \ --source=el-compiler/runtime/el_runtime.c @@ -321,7 +321,7 @@ jobs: --repository=foundation-prod \ --location=us-central1 \ --project=neuron-785695 \ - --package=el/el_runtime.h \ + --package=el-runtime-h \ --version="${VERSION}" \ --source=el-compiler/runtime/el_runtime.h