From d218ee6857bdf4b62f66e4891c0658f6f2b04c1d Mon Sep 17 00:00:00 2001 From: TheBombGamer <245092019+chillcog@users.noreply.github.com> Date: Tue, 12 May 2026 18:28:01 -0700 Subject: [PATCH] Use 2sharkystudios base image and rename tags Rename the workflow job and GHCR tags to use a dotnet-prefixed name, and switch GHCR image references from parkervcp to 2sharkystudios. Updates .github/workflows/dotnet.yml to change the job name and tag paths (ghcr.io/.../yolks:dotnet_ -> ghcr.io/.../dotnet:dotnet_), and updates dotnet/9/Dockerfile to use ghcr.io/2sharkystudios/yolks:debian as the base image for consistency. --- .github/workflows/dotnet.yml | 6 +++--- dotnet/9/Dockerfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index dcf8583..2ac1e72 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -13,7 +13,7 @@ permissions: jobs: push: - name: "yolks:dotnet_${{ matrix.tag }}" + name: "dotnet:dotnet_${{ matrix.tag }}" runs-on: ubuntu-latest strategy: fail-fast: false @@ -49,5 +49,5 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: | - ghcr.io/${{ steps.lower-repo.outputs.repository }}/yolks:dotnet_${{ matrix.tag }} - ${{ github.repository_owner == 'pelican-eggs' && format('ghcr.io/parkervcp/yolks:dotnet_{0}', matrix.tag) || '' }} + ghcr.io/${{ steps.lower-repo.outputs.repository }}/dotnet:dotnet_${{ matrix.tag }} + ${{ github.repository_owner == 'pelican-eggs' && format('ghcr.io/2sharkystudios/yolks:dotnet_{0}', matrix.tag) || '' }} diff --git a/dotnet/9/Dockerfile b/dotnet/9/Dockerfile index 1335c0d..4545221 100644 --- a/dotnet/9/Dockerfile +++ b/dotnet/9/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/parkervcp/yolks:debian +FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/2sharkystudios/yolks:debian LABEL author="Kyle Speight" maintainer="kyle@kyle-hosting.xyz"