From ad69864e41e8b9feb0462088dd3f09895ecdee19 Mon Sep 17 00:00:00 2001 From: Jamil Date: Wed, 15 Oct 2025 19:30:27 -0700 Subject: [PATCH] chore(ci): use bin/ prefix for binary artifacts (#10582) We'll be using a consistent `artifacts` storage account for these built binaries, so we've renamed the container to `binaries`. The apt packages would be under the `apt` container at `artifacts.firezone.dev/apt/` accordingly. Related: firezone/infra#182 --- .github/workflows/_data-plane.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_data-plane.yml b/.github/workflows/_data-plane.yml index 0bab796d1..98e0b627d 100644 --- a/.github/workflows/_data-plane.yml +++ b/.github/workflows/_data-plane.yml @@ -304,7 +304,7 @@ jobs: gs://firezone-staging-artifacts/${{ matrix.name.image_name }}/${{ inputs.sha }}/${{ matrix.arch.shortname }}.sha256sum.txt az storage blob upload \ - --container-name artifacts \ + --container-name binaries \ --name "${{ matrix.name.image_name }}/${{ inputs.sha }}/${{ matrix.arch.shortname }}" \ --file "${{ matrix.name.package }}" \ --overwrite true \ @@ -312,7 +312,7 @@ jobs: --connection-string "${{ secrets.AZURERM_ARTIFACTS_CONNECTION_STRING }}" az storage blob upload \ - --container-name artifacts \ + --container-name binaries \ --name "${{ matrix.name.image_name }}/${{ inputs.sha }}/${{ matrix.arch.shortname }}.sha256sum.txt" \ --file "${{ matrix.name.package }}.sha256sum.txt" \ --overwrite true \