mirror of
https://github.com/ghndrx/gregh.dev.git
synced 2026-02-10 14:54:56 +00:00
29 lines
1.2 KiB
YAML
29 lines
1.2 KiB
YAML
run-name: "☁️ CF › Deploy"
|
||
name: "☁️ CF › Deploy"
|
||
|
||
on:
|
||
pull_request:
|
||
types: [closed]
|
||
|
||
jobs:
|
||
job-publish:
|
||
name: "📦 Publish to Cloudflare"
|
||
runs-on: ubuntu-latest
|
||
permissions:
|
||
contents: read
|
||
deployments: write
|
||
steps:
|
||
- name: "Checkout"
|
||
id: task_publish_checkout
|
||
uses: actions/checkout@v4
|
||
|
||
- name: "☁️ Publish to Cloudflare Pages"
|
||
id: task_publish_push
|
||
uses: aetherinox/cloudflare-publish-action@latest
|
||
with:
|
||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} # Cloudflare API Token from https://dash.cloudflare.com/profile/api-tokens
|
||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} # Cloudflare account ID shown on the right side of the CF website
|
||
projectName: ${{ vars.PROJECT_NAME }} # Project name assigned during creation (see Workers & Pages section)
|
||
directory: src/ # The directory where your built site is located
|
||
branch: main # The branch to deploy; defaults to the branch triggering the workflow
|
||
workingDirectory: . # Working directory relative to the repository root |