diff options
author | Roger Gonzalez <roger@rogs.me> | 2023-01-11 08:50:22 -0300 |
---|---|---|
committer | Roger Gonzalez <roger@rogs.me> | 2023-01-11 08:50:22 -0300 |
commit | 8bae3c31c4423cf8435930f075d7483e81aa7008 (patch) | |
tree | 6567df19785c15c1aefce2bdf53f3ca3e92dfd02 /.gitlab-ci.yml | |
parent | ba598b1c2fdb720c65acc4e6e6a9b1042a085919 (diff) |
Changed webp generation from locally to remotely
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 50f2e6c..4092d75 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,6 +11,6 @@ deploy: - ssh-keyscan $SSH_HOST >> ~/.ssh/known_hosts - chmod 644 ~/.ssh/known_hosts script: - - ssh -p $SSH_PORT $SSH_USER@$SSH_HOST "cd repo && git stash && git pull --force origin master && rm -rf /var/www/yams.media/* && hugo -s . -d /var/www/yams.media/" + - ssh -p $SSH_PORT $SSH_USER@$SSH_HOST "cd repo && git stash && git pull --force origin master && rm -rf /var/www/yams.media/* && ./build.sh" only: - master |