-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df88b0d
commit faa9666
Showing
6 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
# bunnycdn-storage-deploy | ||
|
||
Deploys directory to BunnyCDN storage. | ||
This action deploys selected directory to BunnyCDN storage. | ||
|
||
## Inputs | ||
|
||
### `source` | ||
|
||
**Required** The source directory folder. | ||
|
||
### `storageZoneName` | ||
|
||
**Required** The name of your storage zone where you are connecting to. | ||
|
||
### `apiKey` | ||
|
||
**Required** The storage API key. | ||
|
||
## Example usage | ||
```` | ||
- name: Deploy to BunnyCDN | ||
uses: ayeressian/bunnycdn-storage-deploy@latest | ||
with: | ||
source: "dist" | ||
storageZoneName: "myzone" | ||
accessKey: "${{ secrets.BUNNY_CDN_STORAGE_KEY }}" | ||
```` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,6 @@ | |
"resolveJsonModule": true, | ||
}, | ||
"include": [ | ||
"src" | ||
"src" | ||
] | ||
} |