We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b79ce57 commit 9de1b49Copy full SHA for 9de1b49
1 file changed
.github/workflows/receive-beta-build.yml
@@ -23,7 +23,8 @@ jobs:
23
curl -L -H "Authorization: token ${TOKEN}" -o htmlplayer-build.zip "${ARTIFACT_URL}"
24
unzip htmlplayer-build.zip -d temp-build
25
unzip temp-build/htmlplayer-build.zip -d temp-build
26
-
+ rm temp-build/htmlplayer-build.zip # Remove the inner zip so only build files are moved
27
+
28
- name: Clear and copy to subfolder
29
run: |
30
SUBFOLDER="${{ github.event.client_payload.subfolder }}"
@@ -32,6 +33,8 @@ jobs:
32
33
rm -rf "${SUBFOLDER}"/*
34
mkdir -p "${SUBFOLDER}"
35
mv temp-build/* "${SUBFOLDER}/"
36
+ echo "Contents after move:"
37
+ ls -la "${SUBFOLDER}/" # Debug: list contents
38
39
- name: Commit and push
40
0 commit comments