Fix pipeline (disable docker job when running on a PR from a forked repo)

This commit is contained in:
Deluan 2020-04-27 14:59:12 -04:00
parent 46f1b33812
commit 5fdc09a5b9
1 changed files with 4 additions and 4 deletions

View File

@ -140,21 +140,21 @@ jobs:
- name: Set up Docker Buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
if: ${{env.DOCKER_IMAGE}} != ''
if: env.DOCKER_IMAGE != ''
with:
version: latest
- uses: actions/checkout@v1
if: ${{env.DOCKER_IMAGE}} != ''
if: env.DOCKER_IMAGE != ''
- uses: actions/download-artifact@v1
if: ${{env.DOCKER_IMAGE}} != ''
if: env.DOCKER_IMAGE != ''
with:
name: binaries
path: dist
- name: Build the Docker image and push
if: ${{env.DOCKER_IMAGE}} != ''
if: env.DOCKER_IMAGE != ''
env:
DOCKER_IMAGE: ${{secrets.DOCKER_IMAGE}}
DOCKER_PLATFORM: linux/amd64,linux/arm/v7,linux/arm64