From 1252c4c1f79b2712a975816ece0adda7d9330667 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Sun, 8 Sep 2024 19:20:05 -0400 Subject: [PATCH] Update submodules --- .forgejo/workflows/deploy.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 6c9068e..3150898 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -15,6 +15,10 @@ jobs: apt-get install -y hugo rsync openssh-client nodejs - name: Clone repository uses: https://gitea.com/actions/checkout@v4 + - name: Initialize submodules + run: | + git submodule init + git submodule update - name: Setup SSH env: SSH_KEY: ${{ secrets.ssh_key }} @@ -24,7 +28,7 @@ jobs: chmod 0700 ~/.ssh chmod 0700 ~/.ssh/id_rsa - name: Run Hugo - run: /usr/bin/hugo --verbose + run: /usr/bin/hugo --logLevel info - name: Run rsync env: SSH_PORT: ${{ secrets.ssh_port }}