Update submodules
All checks were successful
/ deploy (push) Successful in 2m9s

This commit is contained in:
Sergio Durigan Junior 2024-09-08 19:20:05 -04:00
parent 46f894adb3
commit 1252c4c1f7
Signed by: sergiodj
GPG key ID: D0EB762865FC5E36

View file

@ -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 }}