home/.github/workflows/cfpages-deploy.yml
user0x42 4b567be0f1
Einige Prüfungen sind fehlgeschlagen
Deploy Zola site to Cloudflare Pages / build-and-deploy (push) Failing after 29s
Update cfpages-deploy.yml
2025-02-27 14:17:08 +01:00

40 Zeilen
1,1 KiB
YAML

name: Deploy Zola site to Cloudflare Pages
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# 1. Checkout the repository code
- name: Checkout repository
uses: actions/checkout@v3
# 2. Install Zola
- name: Install Zola
run: |
ZOLA_VERSION="0.20.0"
curl -fL -o zola.tar.gz https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz
tar -xzf zola.tar.gz
chmod +x zola
mv zola /usr/local/bin/
# 3. Build the site with Zola
- name: Build site with Zola
run: |
zola build --output-dir public
# 4. Install Wrangler CLI
- name: Install Wrangler
run: |
npm install -g @cloudflare/wrangler
# 5. Publish to Cloudflare Pages using Wrangler
- name: Deploy to Cloudflare Pages
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
run: |
wrangler pages publish public --project-name u42