From 429effb544b02019e069bb5a3e3857da25f87b7a Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Sun, 22 Nov 2020 12:00:53 -0500 Subject: [PATCH] chore(ci): include docker build on dep change Signed-off-by: Jef LeCompte --- .github/workflows/ci.yaml | 5 +++-- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 67b9278..6c881b3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,8 +31,9 @@ jobs: id: filter with: filters: | - docker: + build: - 'Dockerfile' + - 'package*.json - name: Build image - if: steps.filter.outputs.docker == 'true' + if: steps.filter.outputs.build == 'true' run: docker build . diff --git a/Dockerfile b/Dockerfile index 5730957..2df675b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:14.15.0-alpine3.12 AS builder -LABEL org.opencontainers.image.source=https://github.com/jef/streetmerchant +LABEL org.opencontainers.image.source="https://github.com/jef/streetmerchant" ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true