Skip to content

Commit 5d5cad5

Browse files
authored
[Bug Fix] Rename devcontainer image to repo-owned package (#413)
The docker-build job has failed on every main run since the monorepo unification (#358) with `denied: permission_denied: write_package` — the ghcr.io/ruby-ui/web-devcontainer package belongs to the archived ruby-ui/web repo, so this repo's GITHUB_TOKEN cannot push to it. Renaming to ghcr.io/ruby-ui/ruby_ui-devcontainer lets the first push create a fresh package linked to this repo with write access. The image is only used as a CI build cache (devcontainer.json builds from the local Dockerfile), so nothing consumes the old name.
1 parent 32c1ba9 commit 5d5cad5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
- name: Build and push devcontainer image
124124
uses: devcontainers/ci@v0.3
125125
with:
126-
imageName: ghcr.io/ruby-ui/web-devcontainer
127-
cacheFrom: ghcr.io/ruby-ui/web-devcontainer
126+
imageName: ghcr.io/ruby-ui/ruby_ui-devcontainer
127+
cacheFrom: ghcr.io/ruby-ui/ruby_ui-devcontainer
128128
subFolder: docs
129129
push: always

0 commit comments

Comments
 (0)