Deploying App using Gitlab CI
Last updated
Was this helpful?
Last updated
Was this helpful?
Continuous Integration allows you to:
Deploy your app instantly, when new code is pushed into a repo
Build your app (in our case npm run build
)
Trigger test scripts (and block deployment if a test fails)
It is definitely worth the effort if you update your app regularly.
GitLab is a service that started as an open-source GitHub competitor, mostly to host code in Git repositories, and evolved into an amazing tool that I won’t introduce here, as it isn’t related to Vue.js. One thing though, they were one of the first major companies to use Vue.js for their user interface.
Docker has to be mentioned as well. It is the most popular containerization service. It basically means you get to execute code in a secure environment, configured exactly like your dev/prod. Very useful when you need to make sure your code is executed with all its dependencies.
Each of these tools would require many posts to be covered. We’ll focus on setting up CI/CD for your Vue.js project. We’ll assume you have no knowledge in the matter.
, I don’t know any other tool with such a beautiful UI that does that. If you do, please let me know.
Create a .gitlab-ci.yml
file at the root of your repo. GitLab will check for this file when new code is pushed. If the file is present, it will define a , executed by a . Click the links if you are curious, or keep reading to see a working example.
Default stages of a pipeline are:
build
test
deploy
Again, you don’t need to master this, but this is the most common use case. You may not have set up unit tests, and if you haven’t, you may remove this step from the file, GitLab won’t mind.
Here is our file, you may copy/paste it in your repo:
Now commit and push the .gitlab-ci.yml
file to your GitLab repo.
Here is how it will look in the Pipelines tab of GitLab UI:
The green checkmark indicates that the step has succeeded and you can see the logs when clicking it.
In the second example, the tests have failed, click the red mark to read the logs and understand what went wrong.
image
is the link to the Docker image. I have chosen to use public official images, but you may use one from the Docker Hub or a private registry.
script
are command lines executed inside our build environment.
artifacts
describes a path to the build result. The files in this path can be used in the next build steps (in deploy
in our example). You can download artifacts from Gitlab UI.
To get it working, you’ll need to provide GitLab with a private SSH key. If you are no security expert, then it is time to take advice from one. The bottom line is do not give it your private SSH key, create one that is used only by GitLab.
Then go to GitLab UI “Settings” (the gear icon), then “Variables” and copy/paste the content of your terminal in “Value”. The “Key” should be SSH_PRIVATE_KEY
. This private key will be used to do the rsync
.
stage
should be build
, test
or deploy
if you use defaults. But that .
More about the .gitlab-ci.yml
file options .
I have described my use case here, but it may not be the simplest. Relevant examples for or other services can be found online.