Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 810 Bytes

README.md

File metadata and controls

35 lines (30 loc) · 810 Bytes

bunnycdn-gh-action

This action deploys selected directory to BunnyCDN storage.

Upload and purge pull zone

- name: Deploy to BunnyCDN
  uses: Snider/[email protected]
  with:
    source: "dist"
    storageZoneName: "myzone"
    accessKey: "${{ secrets.BUNNY_CDN_STORAGE_KEY }}"
    zoneId: "${{ secrets.BUNNY_CDN_PULL_ZONE_ID }}"
    zoneKey: "${{ secrets.BUNNY_CDN_ZONE_KEY }}"

Upload

- name: Upload to BunnyCDN
  uses: Snider/[email protected]
  with:
    source: "dist"
    storageZoneName: "myzone"
    accessKey: "${{ secrets.BUNNY_CDN_STORAGE_KEY }}"

purge pull zone

- name: Purge BunnyCDN
  uses: Snider/[email protected]
  with:
    zoneId: "${{ secrets.BUNNY_CDN_PULL_ZONE_ID }}"
    zoneKey: "${{ secrets.BUNNY_CDN_ZONE_KEY }}"