mirror of
https://codeberg.org/valpackett/tiddlypwa.git
synced 2025-12-05 18:20:40 -08:00
8 lines
246 B
Bash
Executable file
8 lines
246 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd output
|
|
find * -type f -exec curl --fail --request PUT \
|
|
--url https://storage.bunnycdn.com/$BUNNY_BUCKET/{} \
|
|
--header "AccessKey: $BUNNY_KEY" \
|
|
--header "Content-Type: application/octet-stream" \
|
|
--data-binary @{} \;
|