pages github action not working

so i want to deploy from github pages to cloudflare pages, but apparently its not working
here is the code (host.yml):
   deploy:
      environment:
         name: github-pages
         url: ${{ steps.deployment.outputs.page_url }}
      runs-on: ubuntu-latest
      needs: build
      steps:
         - name: Deploy to GitHub Pages
           id: deployment
           uses: actions/deploy-pages@v1
         
         - name: Publish to Cloudflare Pages
           uses: cloudflare/pages-action@v1
           with:
             apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
             accountId: ***
             projectName: ***
             directory: .
             gitHubToken: ${{ secrets.GITHUB_TOKEN }}
             branch: main
             wranglerVersion: '3'
and here is the result:
Was this page helpful?