Update .gitlab-ci.yml file

This commit is contained in:
Administrator
2024-08-12 22:28:05 +00:00
parent 778a9882b8
commit 468d48cc00

View File

@ -1,5 +1,9 @@
stages: stages:
- prepare
- build
- test
- update - update
- deploy
composer_update: composer_update:
stage: update stage: update
@ -13,3 +17,23 @@ composer_update:
key: ${CI_COMMIT_REF_SLUG} key: ${CI_COMMIT_REF_SLUG}
paths: paths:
- vendor/ - vendor/
prepare:
stage: prepare
script:
- echo "Preparing environment..."
build:
stage: build
script:
- echo "Building the project..."
test:
stage: test
script:
- echo "Running tests..."
deploy:
stage: deploy
script:
- echo "Deploying the project..."