19 lines
442 B
Bash
Executable File
19 lines
442 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# A sample post-deploy hook
|
|
#
|
|
# Checks:
|
|
# 1. We have a clean checkout
|
|
# 2. A remote is configured
|
|
# 3. The branch has been pushed to the remote
|
|
# 4. The version we are deploying matches the remote
|
|
#
|
|
# These environment variables are available:
|
|
# MRSK_RECORDED_AT
|
|
# MRSK_PERFORMER
|
|
# MRSK_VERSION
|
|
# MRSK_DESTINATION (if set)
|
|
# MRSK_RUNTIME
|
|
|
|
echo "$MRSK_PERFORMER deployed $MRSK_VERSION to $MRSK_DESTINATION in $MRSK_RUNTIME seconds"
|