Bootstrapping stack deploy plugin

This commit is contained in:
2020-09-23 08:32:50 +02:00
commit 14f7ac7c0a
5 changed files with 741 additions and 0 deletions

19
plugin.sh Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
function load_deploy_key {
echo "FOUND THE FOLLOWING SETTINGS..."
echo "$PLUGIN_DEPLOY_KEY"
echo "-------------------------------"
}
function run_stack_deploy {
echo "TODO: run_stack_deploy"
}
function run_plugin {
load_deploy_key
run_stack_deploy
}
run_plugin
exit 0