2022-05-09 21:24:08 +00:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
example:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
deployments: write
|
|
|
|
name: Example
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Publish to Cloudflare Pages
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
|
|
accountId: 468cce80dfb431f3a4058e6dc6031a44
|
|
|
|
projectName: github-actions-example
|
|
|
|
directory: example
|
|
|
|
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
id: publish
|
2022-12-06 16:41:26 +00:00
|
|
|
- name: Outputs
|
|
|
|
run: |
|
|
|
|
echo "ID: ${{ steps.publish.outputs.id }}"
|
|
|
|
echo "URL: ${{ steps.publish.outputs.url }}"
|
|
|
|
echo "Environment: ${{ steps.publish.outputs.environment }}"
|
|
|
|
echo "Alias: ${{ steps.publish.outputs.alias }}"
|