15 lines
307 B
Bash
Executable File
15 lines
307 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# A sample post-deploy hook
|
|
#
|
|
# These environment variables are available:
|
|
# MRSK_RECORDED_AT
|
|
# MRSK_PERFORMER
|
|
# MRSK_VERSION
|
|
# MRSK_HOSTS
|
|
# MRSK_ROLE (if set)
|
|
# MRSK_DESTINATION (if set)
|
|
# MRSK_RUNTIME
|
|
|
|
echo "$MRSK_PERFORMER deployed $MRSK_VERSION to $MRSK_DESTINATION in $MRSK_RUNTIME seconds"
|