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: |