Skip Docker CI Login/Push on forks (#23564)

This commit is contained in:
Nick Schonning 2023-03-14 22:43:49 -04:00 committed by Claire
parent 25c517144c
commit 98d654b8bb
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: github.event_name != 'pull_request'
if: github.repository == 'mastodon/mastodon' && github.event_name != 'pull_request'
- name: Log in to the Github Container registry
uses: docker/login-action@v2
@ -36,7 +36,7 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
if: github.event_name != 'pull_request'
if: github.repository == 'mastodon/mastodon' && github.event_name != 'pull_request'
- uses: docker/metadata-action@v4
id: meta