Courses
Vue Foundations Vue Fullstack Vue Enterprise
Articles
Latest Topics
More
Newsletter Sponsorship Discord About
The video for this lesson is currently being updated, please read the transcript instead.
Testing Vue Apps - Unit & E2E > Lesson 39

Completing CD workflow

Returning to our continuous deployment script, let's now add the final job to our pipeline which is the deploy job.

So let's create a new top-level property deploy. We'll then give this a key stage and set that to deploy. We'll also add an only key and give it an array member deploy as well.

.gitlab-ci.yml

deploy:
  stage: deploy
  only:
  - deploy

Setting environment variables


Back to course page

Click to load comments...

Courses
  • Vue Foundations
  • Vue Fullstack
  • Vue Enterprise
Articles
  • Latest
  • Topics
Newsletter
  • Join
  • Sponsorship
More
  • Discord
  • Vue.js jobs
  • About

Vue.js Developers © 2021. View our privacy policy .

  • RSS
  • |
  • Atom