We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c80fc6b commit df403c1Copy full SHA for df403c1
1 file changed
.github/workflows/production.yml
@@ -54,6 +54,13 @@ jobs:
54
- name: Push with commit ${{ matrix.php }} tag
55
run: docker push ghcr.io/${{ env.CI_REPOSITORY_OWNER_SLUG }}/${{ env.CI_REPOSITORY_NAME }}:${{ matrix.php }}
56
57
+ #review containers
58
+ - name: Build the review container image
59
+ run: docker build . --tag ghcr.io/${{ github.repository_owner }}/${{ env.CI_REPOSITORY_NAME }}:${{ matrix.php }}-review --file Dockerfile.${{ matrix.php }}-review
60
+ - name: Push with commit *-review tag
61
+ run: docker push ghcr.io/${{ github.repository_owner }}/${{ env.CI_REPOSITORY_NAME }}:${{ matrix.php }}-review
62
+
63
64
cleanup:
65
needs: [build]
66
runs-on: ubuntu-latest
0 commit comments