Skip to content

Commit 1d603de

Browse files
committed
test release
1 parent 37154b2 commit 1d603de

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)