From 3139fe0c6de0a4054089dd402454006dd0ab9c97 Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Wed, 29 Jun 2022 23:31:05 -0700 Subject: [PATCH] Change github.actor to repository_owner. --- .github/workflows/cd-manual.yml | 2 +- .github/workflows/cd.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd-manual.yml b/.github/workflows/cd-manual.yml index 118b225f..d344e3b8 100644 --- a/.github/workflows/cd-manual.yml +++ b/.github/workflows/cd-manual.yml @@ -26,6 +26,6 @@ jobs: image: umami tags: ${{ matrix.db-type }}-${{ inputs.version }}, ${{ matrix.db-type }}-latest buildArgs: DATABASE_TYPE=${{ matrix.db-type }} - registry: ghcr.io/${{ github.actor }} + registry: ghcr.io/${{ github.repository_owner }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 229b295b..96755820 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -25,6 +25,6 @@ jobs: image: umami tags: ${{ matrix.db-type }}-${{ env.RELEASE_VERSION }}, ${{ matrix.db-type }}-latest buildArgs: DATABASE_TYPE=${{ matrix.db-type }} - registry: ghcr.io/${{ github.actor }} + registry: ghcr.io/${{ github.repository_owner }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }}