Commit be78bbe
Bryan Howard
Fix create-release workflow for new artifact structure
**Problem:** Artifact download extracts files directly to working directory, not into a subdirectory as expected.
**Analysis:** From failed run logs, all files are present:
- ✅ PyFlowGraph.exe (8.8MB)
- ✅ examples/ directory
- ✅ python_runtime/ directory
- ✅ All Qt DLLs and required components
**Root Cause:** GitHub Actions downloads artifacts by extracting contents directly, not preserving directory structure.
**Solution:**
- Remove expectation of subdirectory structure
- Check for files directly in working directory
- Verify PyFlowGraph.exe and key directories exist
- Create zip from current directory with exclusions
- Exclude development files (src/, tests/, .git/, docs/, etc.)
- Include only runtime files needed for distribution
**Result:** Release zip will contain clean distribution ready for end users.
🤖 Generated with [Claude Code](https://claude.ai/code)1 parent 7e46d6d commit be78bbe
1 file changed
+18
-11
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
103 | | - | |
104 | 103 | | |
105 | 104 | | |
106 | | - | |
107 | | - | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
108 | 109 | | |
109 | 110 | | |
110 | 111 | | |
111 | 112 | | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
116 | 117 | | |
117 | 118 | | |
118 | 119 | | |
119 | | - | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
120 | 126 | | |
121 | 127 | | |
122 | | - | |
| 128 | + | |
| 129 | + | |
123 | 130 | | |
124 | | - | |
125 | | - | |
| 131 | + | |
| 132 | + | |
126 | 133 | | |
127 | 134 | | |
128 | 135 | | |
| |||
0 commit comments