We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05f8942 commit 34b55bdCopy full SHA for 34b55bd
.travis.yml
@@ -29,9 +29,6 @@ script:
29
- npx vue-cli-service lint --no-fix
30
- npx vue-cli-service test:unit
31
32
-after_success:
33
- - npx vue-cli-service build --dest nginx/dist
34
-
35
deploy:
36
skip_cleanup: true
37
provider: script
scripts/deploy.sh
@@ -39,6 +39,9 @@ chmod +x ./kubectl
39
sudo mv ./kubectl /usr/local/bin
40
gcloud --quiet container clusters get-credentials dd-decaf
41
42
+# Build the static files
43
+npx vue-cli-service build --dest nginx/dist
44
+
45
# Build the nginx image
46
docker build -t ${IMAGE_REPO}:${TRAVIS_COMMIT::12} -t ${IMAGE_REPO}:${TRAVIS_BRANCH} nginx
47
docker push ${IMAGE_REPO}:${TRAVIS_COMMIT::12}
0 commit comments