From 88d401198a3f5ebe0f1b149e8388db823023c8c6 Mon Sep 17 00:00:00 2001 From: "Paul W." Date: Tue, 25 Aug 2026 18:10:56 -0400 Subject: [PATCH] fix updated dates --- .gitea/workflows/deploy.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index b1bf888..dd77346 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -13,6 +13,8 @@ jobs: steps: - name: Check out source uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Install Bun uses: oven-sh/setup-bun@v2 @@ -25,11 +27,6 @@ jobs: - name: Build site run: bun run build - - name: Install deployment tools - run: | - sudo apt-get update - sudo apt-get install --yes --no-install-recommends openssh-client - - name: Configure SSH env: DEPLOY_SSH_KEY: ${{ secrets.DEPLOY_SSH_KEY }}