Deploy
| Field | Value |
|---|---|
| Type | Skill Resource |
| Source | ~/.copilot/skills/go-task/templates/scripts/deploy.sh |
| Description | Not 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."