@@ -109,23 +109,17 @@ echo -e "${GREEN}✓ Tag $TAG created locally${NC}"
109109# Step 8: Simulate release artifact creation
110110echo " "
111111echo -e " ${YELLOW} 📦 Simulating release package creation...${NC} "
112- echo " (Running create-release-packages.sh in dry-run mode )"
112+ echo " (High-level simulation only; packaging script is not executed )"
113113echo " "
114114
115115# Check if script exists and is executable
116116SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
117117if [[ -x " $SCRIPT_DIR /create-release-packages.sh" ]]; then
118- # Just show what would be created, don't actually create
119- echo -e " ${BLUE} Packages that would be created:${NC} "
120- echo " - spec-kit-template-copilot-sh-$TAG .zip"
121- echo " - spec-kit-template-copilot-ps-$TAG .zip"
122- echo " - spec-kit-template-claude-sh-$TAG .zip"
123- echo " - spec-kit-template-claude-ps-$TAG .zip"
124- echo " - spec-kit-template-gemini-sh-$TAG .zip"
125- echo " - spec-kit-template-gemini-ps-$TAG .zip"
126- echo " - spec-kit-template-cursor-agent-sh-$TAG .zip"
127- echo " - spec-kit-template-cursor-agent-ps-$TAG .zip"
128- echo " ... (40 total packages)"
118+ echo -e " ${BLUE} In a real release, the following command would be run to create packages:${NC} "
119+ echo " $SCRIPT_DIR /create-release-packages.sh \" $TAG \" "
120+ echo " "
121+ echo " This simulation does not enumerate individual package files to avoid"
122+ echo " drifting from the actual behavior of create-release-packages.sh."
129123else
130124 echo -e " ${RED} ⚠️ create-release-packages.sh not found or not executable${NC} "
131125fi
0 commit comments