image.png

    1. stages:
    2. - build
    3. - deploy
    4. build_job:
    5. stage: build
    6. script:
    7. - yarn dev
    8. - yarn build
    9. - rm -rf ./production_dist && mv ./dist ./production_dist
    10. dep_job:
    11. stage: deploy
    12. script:
    13. - git checkout -b ruka.ju/test1
    14. - cp -r ./productionn_dist ./src
    15. - git add. && git commit -m 'UPDATED' -n
    16. - git merge alex/must-merge-me
    17. - mv version-message-icon version-message-icon.png
    18. - yarn build