Skip to content

Commit d2619fd

Browse files
authored
Remove debug logging
1 parent 8f5fcb5 commit d2619fd

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

.github/workflows/receive-beta-build.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,9 @@ jobs:
3232
echo "Unzipping inner build zip..."
3333
unzip -q temp-build/htmlplayer-build.zip -d temp-build
3434
35-
# Optional: keep workspace clean
35+
# keep workspace clean
3636
rm -f temp-build/htmlplayer-build.zip htmlplayer-build.zip
3737
38-
echo "Resulting structure under temp-build:"
39-
find temp-build -maxdepth 3 -type d -print
40-
4138
- name: Replace subfolder with Build/dist contents
4239
run: |
4340
set -euo pipefail
@@ -48,9 +45,6 @@ jobs:
4845
# Ensure subfolder exists
4946
mkdir -p "${SUBFOLDER}"
5047
51-
echo "Before replace, contents of ${SUBFOLDER}:"
52-
ls -la "${SUBFOLDER}" || true
53-
5448
# Clear subfolder (including hidden files, but keep the dir itself)
5549
# The printf + xargs pattern avoids errors when the glob is empty.
5650
if [ -d "${SUBFOLDER}" ]; then
@@ -71,9 +65,6 @@ jobs:
7165
shopt -s dotglob nullglob
7266
mv temp-build/Build/dist/* "${SUBFOLDER}/"
7367
74-
echo "After replace, contents of ${SUBFOLDER}:"
75-
ls -la "${SUBFOLDER}"
76-
7768
- name: Commit and push
7869
run: |
7970
set -euo pipefail

0 commit comments

Comments
 (0)