Update cfpages-deploy.yml
Einige Prüfungen sind fehlgeschlagen
Deploy Zola site to Cloudflare Pages / build-and-deploy (push) Failing after 11s

Dieser Commit ist enthalten in:
user0x42 2025-02-27 14:20:45 +01:00
Ursprung 4b567be0f1
Commit 86f4c7181e
Signiert von: user0x42
SSH-Key-Fingerabdruck: SHA256:l/BokOyIeoKHPSk6adSWa2v9yD4TQV9QLRngyAHmoJ0

Datei anzeigen

@ -21,18 +21,22 @@ jobs:
tar -xzf zola.tar.gz
chmod +x zola
mv zola /usr/local/bin/
# 3. Initialize Submodules
- name: Initialize submodules
run: |
git submodule update --init --recursive
# 3. Build the site with Zola
# 4. Build the site with Zola
- name: Build site with Zola
run: |
zola build --output-dir public
# 4. Install Wrangler CLI
# 5. Install Wrangler CLI
- name: Install Wrangler
run: |
npm install -g @cloudflare/wrangler
# 5. Publish to Cloudflare Pages using Wrangler
# 6. Publish to Cloudflare Pages using Wrangler
- name: Deploy to Cloudflare Pages
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}