From 0923e494495ae099b9e67002ce77b211f8f36c4b Mon Sep 17 00:00:00 2001 From: derchris Date: Sun, 5 Apr 2026 13:36:00 +0000 Subject: [PATCH] Update .forgejo/workflows/deploy.yaml --- .forgejo/workflows/deploy.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index cfc11a6..1bc485d 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -21,20 +21,20 @@ jobs: - name: Pipeline info run: | echo "Run triggered by ${{ github.event_name }} (${{ github.event.action }}) on ref ${{ github.ref_name }}" + + - name: Bootstrap CI Tools + run: | + apt update + apt -y install nodejs git rsync openssh-client + pip install --upgrade pip - uses: actions/checkout@v6 with: fetch-depth: 0 # pull full history for page lastmod by git commit date - - name: Install packages + - name: Install Python packages run: | - apt update - # For CI actions. - apt -y install nodejs - # For website build. pip install -r requirements.txt - # For uploading. - apt -y install rsync openssh-client - name: Build website - prod run: |