From f4f7db6126edabb6d9ab12794404e999935fe2cc Mon Sep 17 00:00:00 2001 From: Aaron Wislang Date: Mon, 19 Jan 2026 17:47:21 -0500 Subject: [PATCH] fix: use nested path pattern for devcontainer image Update IMAGE_NAME to use nested path (repo/devcontainer) consistent with the main wasm component publishing pattern. --- .devcontainer/devcontainer.json | 2 +- .github/workflows/publish-devcontainer.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6b99a42..6449e80 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "image": "ghcr.io/bytecodealliance/sample-wasi-http-rust-devcontainer:latest", + "image": "ghcr.io/bytecodealliance/sample-wasi-http-rust/devcontainer:latest", "features": { //"ghcr.io/devcontainers/features/rust:1": {}, "ghcr.io/devcontainers/features/azure-cli:1": {} diff --git a/.github/workflows/publish-devcontainer.yml b/.github/workflows/publish-devcontainer.yml index bba388b..cae661b 100644 --- a/.github/workflows/publish-devcontainer.yml +++ b/.github/workflows/publish-devcontainer.yml @@ -10,7 +10,7 @@ on: # Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. env: REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }}-devcontainer + IMAGE_NAME: ${{ github.repository }}/devcontainer # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. jobs: