update
Some checks failed
Hugo / build (push) Failing after 14s

This commit is contained in:
brookee 2024-02-29 19:51:08 -05:00
parent fd806f04f9
commit 0c8f0ba037

View file

@ -9,20 +9,22 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Add key
run: |
mkdir $HOME/.ssh && \
echo "${{ secrets.SSH_PRIVATE_KEY }}" > $HOME/.ssh/id_rsa
- name: Grab packages
run: |
apt-get update && \
apt-get install -y jq rsync tar wget && \
wget https://github.com/gohugoio/hugo/releases/download/v0.123.4/hugo_extended_0.123.4_linux-amd64.tar.gz && \
tar -xzvf hugo_extended_0.123.4_linux-amd64.tar.gz && \
chmod +x hugo
wget https://github.com/gohugoio/hugo/releases/download/v0.123.4/hugo_0.123.4_linux-amd64.tar.gz && \
tar -xzvf hugo_0.123.4_linux-amd64.tar.gz && \
chmod +x hugo
- name: Run build task
run: ./hugo --minify --logLevel info
- name: Test static page
run: bash ${{ gitea.workspace }}/bin/test_static_page.sh
- name: Deploy to Server
# run: rsync -avz --delete public/ ${{ vars.REMOTE_USER }}@${{ vars.REMOTE_HOST }}:${{ vars.REMOTE_TARGET }}
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}