Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • main
1 result

Target

Select target project
  • wpdesk/predators/shopify/tools/gitlab-ci
1 result
Select Git revision
  • main
1 result
Show changes
Commits on Source (2)
......@@ -11,7 +11,7 @@ stages:
- build
- deploy
.template: &build-rules
.build-rules:
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" || $CI_COMMIT_REF_NAME == "devel"'
when: always
......@@ -65,7 +65,7 @@ stages:
DEPLOY_HOST: $PRODUCTION_DEPLOY_HOST
build web frontend:
<<: *build-rules
extends: .build-rules
image: node:latest
artifacts:
paths:
......@@ -84,7 +84,7 @@ build web frontend:
- npm run build
build web backend:
<<: *build-rules
extends: .build-rules
image: composer:latest
artifacts:
paths:
......