Skip to content

Commit f435622

Browse files
committedAug 16, 2021
Monitor on push
1 parent bb8e2b7 commit f435622

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed
 

‎.github/workflows/build-and-push.yml

+24-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
run: |
3131
echo "PROD_IMAGE_REF=craftcms/${{ matrix.type }}:${{ matrix.php }}" >> $GITHUB_ENV
3232
echo "DEV_IMAGE_REF=craftcms/${{ matrix.type }}:${{ matrix.php }}-dev" >> $GITHUB_ENV
33+
echo "DOCKERFILE=${{ matrix.php }}/Dockerfile" >> $GITHUB_ENV
3334
echo "DEV_DOCKERFILE=${{ matrix.php }}/dev.Dockerfile" >> $GITHUB_ENV
3435
3536
- name: Check out the repository
@@ -60,6 +61,7 @@ jobs:
6061
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
6162
with:
6263
image: ${{ env.PROD_IMAGE_REF }}
64+
args: --file=${{ env.DOCKERFILE }}
6365

6466
- name: Build development image for Snyk test
6567
uses: docker/build-push-action@v2
@@ -73,12 +75,13 @@ jobs:
7375
PROJECT_TYPE=${{ matrix.type }}
7476
PHP_VERSION=${{ matrix.php }}
7577
76-
- name: Snyk test develelopment image
78+
- name: Snyk test development image
7779
uses: snyk/actions/docker@master
7880
env:
7981
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
8082
with:
8183
image: ${{ env.DEV_IMAGE_REF }}
84+
args: --file=${{ env.DEV_DOCKERFILE }}
8285

8386
- name: Login to Docker Hub
8487
uses: docker/login-action@v1
@@ -112,6 +115,24 @@ jobs:
112115
PROJECT_TYPE=${{ matrix.type }}
113116
PHP_VERSION=${{ matrix.php }}
114117
118+
- name: Snyk monitor production image
119+
uses: snyk/actions/docker@master
120+
env:
121+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
122+
with:
123+
command: monitor
124+
image: ${{ env.DEV_IMAGE_REF }}
125+
args: --file=${{ env.DOCKERFILE }}
126+
127+
- name: Snyk monitor development image
128+
uses: snyk/actions/docker@master
129+
env:
130+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
131+
with:
132+
command: monitor
133+
image: ${{ env.DEV_IMAGE_REF }}
134+
args: --file=${{ env.DEV_DOCKERFILE }}
135+
115136
build-nginx-images:
116137
name: Build NGINX images
117138
needs: build-php-images
@@ -130,6 +151,7 @@ jobs:
130151
echo "DEV_IMAGE_REF=craftcms/nginx:${{ matrix.php }}-dev" >> $GITHUB_ENV
131152
echo "BASE_PROD_IMAGE_TAG=${{ matrix.php }}" >> $GITHUB_ENV
132153
echo "BASE_DEV_IMAGE_TAG=${{ matrix.php }}-dev" >> $GITHUB_ENV
154+
echo "DOCKERFILE=${{ matrix.php }}/Dockerfile" >> $GITHUB_ENV
133155
134156
- name: Check out the repository
135157
uses: actions/checkout@v2
@@ -158,6 +180,7 @@ jobs:
158180
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
159181
with:
160182
image: ${{ env.PROD_IMAGE_REF }}
183+
args: --file=${{ env.DOCKERFILE }}
161184

162185
- name: Build development image for Snyk test
163186
uses: docker/build-push-action@v2

0 commit comments

Comments
 (0)
Please sign in to comment.