1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:37:44 +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

@ -1,11 +1,11 @@
// The docker image used below was generated from '.devcontainer/devcontainer.json' // The docker image used below was generated from '.devcontainer/devcontainer.json'
// by the '.github/workflows/dev-container.yml' workflow. // by the '.github/workflows/dev-container.yml' workflow.
// //
// By building this dev container image in advance, tools // By building this dev container image in advance, tools
// like GitHub Codespaces (https://containers.dev/supporting) // like GitHub Codespaces (https://containers.dev/supporting)
// do not need to install all the prerequsite dependencies from scratch, // do not need to install all the prerequsite dependencies from scratch,
// 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

@ -1,6 +1,6 @@
# This workflow builds a docker image with the Dev Container CLI (https://github.com/devcontainers/cli) # This workflow builds a docker image with the Dev Container CLI (https://github.com/devcontainers/cli)
# #
name: 'Build Dev Container Image' name: 'Build Dev Container Image'
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
@ -9,7 +9,6 @@ on:
schedule: schedule:
# 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
@ -25,7 +24,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v2 uses: docker/login-action@v2
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
@ -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