1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:27:34 +00:00

Meta: Hardcode lowercase repository name for devcontainer

This should unbreak CI.
This commit is contained in:
Jelle Raaijmakers 2023-05-24 20:07:34 +02:00
parent 7026174458
commit 971d3eef4a
2 changed files with 8 additions and 9 deletions

View file

@ -7,5 +7,5 @@
// getting you into your development environment faster! // getting you into your development environment faster!
{ {
"name": "SerenityOS (Pre-Built Image)", "name": "SerenityOS (Pre-Built Image)",
"image": "ghcr.io/SerenityOS/serenity-devcontainer:base" "image": "ghcr.io/serenityos/serenity-devcontainer:base"
} }

View file

@ -10,7 +10,6 @@ on:
# https://crontab.guru/#0_0_*_*_1 # https://crontab.guru/#0_0_*_*_1
- cron: '0 0 * * 1' - cron: '0 0 * * 1'
permissions: permissions:
contents: read contents: read
# Push images to GHCR. # Push images to GHCR.
@ -34,6 +33,6 @@ jobs:
- name: Build Base Dev Container Image - name: Build Base Dev Container Image
uses: devcontainers/ci@v0.3 uses: devcontainers/ci@v0.3
with: with:
imageName: ghcr.io/${{ github.repository_owner }}/serenity-devcontainer imageName: ghcr.io/serenityos/serenity-devcontainer
imageTag: base,latest imageTag: base,latest
push: always push: always