Skip to content

:dependabot: npm(deps-dev): Bump wrangler from 3.99.0 to 3.101.0 #55

:dependabot: npm(deps-dev): Bump wrangler from 3.99.0 to 3.101.0

:dependabot: npm(deps-dev): Bump wrangler from 3.99.0 to 3.101.0 #55

Workflow file for this run

---
name: πŸš€ Deploy Preview
on:
pull_request:
branches:
- main
permissions: {}
jobs:
deploy-preview:
name: πŸš€ Deploy Preview
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
environment:
name: preview
url: ${{ steps.deploy.outputs.deployment-url }}
steps:
- name: Checkout
id: checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Zola
id: install_zola
uses: ./.github/actions/install-zola
- name: Build
id: build
working-directory: site
run: zola build
- name: Deploy
id: deploy
uses: cloudflare/wrangler-action@6d58852c35a27e6034745c5d0bc373d739014f7f # v3.13.0
with:
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
command: pages deploy --branch ${{ github.head_ref }} --commit-dirty=true --commit-hash ${{ github.sha }}