Skip to content

:dependabot: npm(deps-dev): Bump wrangler from 3.105.0 to 3.107.0 #64

:dependabot: npm(deps-dev): Bump wrangler from 3.105.0 to 3.107.0

:dependabot: npm(deps-dev): Bump wrangler from 3.105.0 to 3.107.0 #64

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@7a5f8bbdfeedcde38e6777a50fe685f89259d4ca # v3.13.1
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 }}