-
Notifications
You must be signed in to change notification settings - Fork 0
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
404d78c
commit ab15afa
Showing
4 changed files
with
66 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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package git | ||
|
||
type HookValues struct { | ||
SiteId string | ||
StorageHost string | ||
StorageName string | ||
StorageToken string | ||
} | ||
|
||
var HookTemplate = `#!/bin/bash | ||
set -euo pipefail | ||
echo "hi" | ||
echo "you just pushed to {{.SiteId}}..." | ||
echo "deleting current content" | ||
curl -X "DELETE" -H "AccessKey: {{.StorageToken}}" "https://{{.StorageHost}}/{{.StorageName}}/" | ||
echo "listing files..." | ||
git checkout main | ||
for FILENAME in $(git ls-files); | ||
do | ||
echo "Uploading $FILENAME of size $(stat --printf='%s' $FILENAME) bytes..." | ||
sshpass -p {{.StorageToken}} sftp -q -o StrictHostKeyChecking=no {{.StorageName}}@{{.StorageHost}} <<< $"@put ${FILENAME}" | ||
done | ||
echo "all uploaded goodbye" | ||
` |
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