From 3a7beeade58bbd222d98cdc34bee253a012d7a76 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Wed, 21 Aug 2024 22:38:18 +0200 Subject: [PATCH] apt update, of course, now install hugo! --- .gitea/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index c51827c..41c72c7 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -17,7 +17,7 @@ jobs: steps: - run: echo "${{ secrets.SSH_PRIVATE_KEY }}" > /private.key - run: chmod 600 /private.key - - run: sudo apt install hugo + - run: apt update && apt install -y hugo - uses: actions/checkout@v4 - run: APP_VERSION=latest make - run: |