Skip to content

Commit e435ab8

Browse files
mnriemCopilot
andauthored
Update .github/workflows/scripts/simulate-release.sh
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent f16853d commit e435ab8

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

.github/workflows/scripts/simulate-release.sh

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -109,23 +109,17 @@ echo -e "${GREEN}✓ Tag $TAG created locally${NC}"
109109
# Step 8: Simulate release artifact creation
110110
echo ""
111111
echo -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)"
113113
echo ""
114114

115115
# Check if script exists and is executable
116116
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
117117
if [[ -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."
129123
else
130124
echo -e "${RED}⚠️ create-release-packages.sh not found or not executable${NC}"
131125
fi

0 commit comments

Comments
 (0)