diff options
author | 2023-03-24 16:13:40 +0200 | |
---|---|---|
committer | 2024-04-06 11:31:29 -0700 | |
commit | f0cb04188588531eb24f56ebfa79f9f05cda8dc3 (patch) | |
tree | 679e127cb2c08b629f0ff97ac6584a26021838d5 | |
parent | fdd1b3f18e60a53fe703d63b0bf4663c835e7277 (diff) | |
download | v2-f0cb04188588531eb24f56ebfa79f9f05cda8dc3.tar.gz v2-f0cb04188588531eb24f56ebfa79f9f05cda8dc3.tar.zst v2-f0cb04188588531eb24f56ebfa79f9f05cda8dc3.zip |
Add back removed other repo owners in GH docker actions
In cf96ab45c198fbdc, support was added for using Docker related Github
actions in repositories of other owners. This was pretty helpful as it
allowed running modified forks off of main in a nightly fashion before
patches were pushed upstream. This was 6e870cdccc9ac845b678b, add it
back
-rw-r--r-- | .github/workflows/docker.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e661534e..cd030d3f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -24,9 +24,9 @@ jobs: uses: docker/metadata-action@v5 with: images: | - docker.io/miniflux/miniflux - ghcr.io/miniflux/miniflux - quay.io/miniflux/miniflux + docker.io/${{ github.repository_owner }}/miniflux + ghcr.io/${{ github.repository_owner }}/miniflux + quay.io/${{ github.repository_owner }}/miniflux tags: | type=ref,event=pr type=schedule,pattern=nightly @@ -37,9 +37,9 @@ jobs: uses: docker/metadata-action@v5 with: images: | - docker.io/miniflux/miniflux - ghcr.io/miniflux/miniflux - quay.io/miniflux/miniflux + docker.io/${{ github.repository_owner }}/miniflux + ghcr.io/${{ github.repository_owner }}/miniflux + quay.io/${{ github.repository_owner }}/miniflux tags: | type=ref,event=pr,suffix=-distroless type=schedule,pattern=nightly,suffix=-distroless |