Skip to content

Deploy

FieldValue
TypeSkill Resource
Source~/.copilot/skills/go-task/templates/scripts/deploy.sh
DescriptionNot specified

Source Content

#!/usr/bin/env bash
#
# Example external script called by the deploy task. Logic lives here (not in a
# multi-line cmds block) so it can be syntax-checked and tested on its own.
set -euo pipefail
ENVIRONMENT="${1:?usage: deploy.sh <environment>}"
echo "Deploying to ${ENVIRONMENT}..."
# Real deploy steps go here.
echo "Done."