You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
BunnyCDN storage deployer
v1.1.5
This action deploys selected directory to BunnyCDN storage.
Required The source directory folder.
Required The name of your storage zone where you are connecting to.
Required The storage API key.
The storage endpoint. Default value is storage.bunnycdn.com
The storage password. It should be read and write capable.
Necessary for purging pull zone.
It will purge the pull zone if true. pullZoneId and pullZoneAccessKey should be provided.
It will remove the files from storage before uploading if "true" provided.
- name: Deploy to BunnyCDN
uses: ayeressian/[email protected]
with:
source: "dist"
storageZoneName: "${{ secrets.STORAGE_NAME }}"
storagePassword: "${{ secrets.STORAGE_PASSWORD }}"
accessKey: "${{ secrets.STORAGE_KEY }}"
pullZoneId: "${{ secrets.ZONE_ID }}"
remove: "true"
purge: "true"