diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2023-05-24 20:07:34 +0200 |
---|---|---|
committer | Jelle Raaijmakers <jelle@gmta.nl> | 2023-05-24 20:07:34 +0200 |
commit | 971d3eef4af32de1c5ca17f4418d8ba359687363 (patch) | |
tree | ba07ba1412fde32ddbe2afa8530e1d24419ea130 /.github/workflows | |
parent | 7026174458ab15e2ac2d1c01c1cd24ed0e05b5d2 (diff) | |
download | serenity-971d3eef4af32de1c5ca17f4418d8ba359687363.zip |
Meta: Hardcode lowercase repository name for devcontainer
This should unbreak CI.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/dev-container.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/dev-container.yml b/.github/workflows/dev-container.yml index be3947750b..a3b20120e3 100644 --- a/.github/workflows/dev-container.yml +++ b/.github/workflows/dev-container.yml @@ -1,6 +1,6 @@ # 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: workflow_dispatch: push: @@ -9,7 +9,6 @@ on: schedule: # https://crontab.guru/#0_0_*_*_1 - cron: '0 0 * * 1' - permissions: contents: read @@ -25,7 +24,7 @@ jobs: uses: actions/checkout@v3 - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -34,6 +33,6 @@ jobs: - name: Build Base Dev Container Image uses: devcontainers/ci@v0.3 with: - imageName: ghcr.io/${{ github.repository_owner }}/serenity-devcontainer + imageName: ghcr.io/serenityos/serenity-devcontainer imageTag: base,latest push: always |