From 6e08f3e550903afd1ef30ef63dc7984a44e89d7c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Alexander=20Mart=C3=ADnez=20M=C3=A9ndez?=
<alexander2198160@correo.uis.edu.co>
Date: Wed, 12 Apr 2023 15:15:59 +0000
Subject: [PATCH] ajustar rama en .gitlab-ci.yml y build path
---
.gitlab-ci.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6a4287e9..f78a414d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,7 +14,7 @@ jupyter-build:
- jupyter-book build ./docs/ # build to public path
artifacts:
paths:
- - Book/_build
+ - docs/_build
expire_in: 30 mins
# the 'pages' job will deploy and build your site to the 'public' path
@@ -30,9 +30,9 @@ class-deploy:
- chmod 700 ~/.ssh
- echo "$SSH_KNOWN_HOSTS" >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
- - rsync -ah ./Book/_build/html/* semillero-halley@class.redclara.net:~/muysc/
+ - rsync -ah ./docs/_build/html/* semillero-halley@class.redclara.net:~/muysc/
only:
- - main # this job will affect only the 'master' branch
+ - master # this job will affect only the 'master' branch
--
GitLab