made ice drakes post public since w/e, added some more missing contex… #46
This file contains hidden or 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
name: Deploy to BunnyCDN | |
on: [push] | |
jobs: | |
bunnycdn_deploy_job: | |
runs-on: ubuntu-latest | |
name: Uploads files to BunnyCDN storage | |
environment: BunnyCDN | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build | |
uses: withastro/action@v0 | |
with: | |
package-manager: npm | |
- name: Upload | |
uses: skyeto/actionbunny@main | |
with: | |
source: "dist" | |
storageZone: "${{ secrets.STORAGEZONE }}" | |
storageKey: "${{ secrets.STORAGEKEY }}" | |
apiKey: "${{ secrets.APIKEY }}" |