File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -120,13 +120,6 @@ jobs:
120120 name : ${{ matrix.platform }}-builds
121121 - name : List files in the build directory
122122 run : ls -l
123- - name : List Downloaded Files
124- run : |
125- echo "Listing downloaded files in the TxDOT directory:"
126- ls -l /home/runner/work/TxDOT/TxDOT
127- echo "Listing files specifically for SETUP and installer:"
128- ls -l /home/runner/work/TxDOT/TxDOT/*Setup* /home/runner/work/TxDOT/TxDOT/*.exe
129-
130123 - name : Create GitHub Release
131124 id : create_release
132125 uses : actions/create-release@v1
@@ -143,7 +136,7 @@ jobs:
143136 run : |
144137 VERSION=${{ steps.extract_version.outputs.version }}
145138 # Locate all files matching the version
146- files=($(ls ./artifacts/ *${VERSION}*.exe 2>/dev/null || echo ""))
139+ files=($(ls ./*${VERSION}* 2>/dev/null || echo ""))
147140 if [ ${#files[@]} -eq 0 ]; then
148141 echo "Error: No files found matching version ${VERSION}"
149142 exit 1
You can’t perform that action at this time.
0 commit comments