You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cloudflare-pages-action/action.yml

44 lines
1.1 KiB
YAML

name: "Cloudflare Pages GitHub Action"
description: "Publish to Cloudflare Pages"
branding:
icon: "upload-cloud"
color: "orange"
inputs:
apiToken:
description: "Cloudflare API Token"
required: true
accountId:
description: "Cloudflare Account ID"
required: true
projectName:
description: "The name of the Pages project to upload to"
required: true
directory:
description: "The directory of static assets to upload"
required: true
gitHubToken:
description: "GitHub Token"
required: false
branch:
description: "The name of the branch you want to deploy to"
required: false
workingDirectory:
description: "The working directory in which to run Wrangler"
required: false
wranglerVersion:
description: "The version of Wrangler to use"
required: false
default: "2"
outputs:
id:
description: The ID of the pages deployment
url:
description: The URL of the pages deployment
alias:
description: The alias if it exists otherwise the deployment URL
environment:
description: The environment that was deployed to
runs:
using: "node16"
main: "index.js"