Skip to content

Commit b5a9689

Browse files
Copilotluke-b
andauthored
fix: resolve failing deploy-demo workflow (case mismatch + Node.js 24 env)
Agent-Logs-Url: https://github.com/luke-b/DosTest/sessions/62689058-3b59-4f3d-9d2b-a81ca48eea86 Co-authored-by: luke-b <1448891+luke-b@users.noreply.github.com>
1 parent e62c2d3 commit b5a9689

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/borland-dos-pipeline.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ permissions:
99
pages: write
1010
id-token: write
1111

12+
env:
13+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
14+
1215
jobs:
1316
build:
1417
runs-on: ubuntu-latest
1518
steps:
1619
- name: Checkout repository
1720
uses: actions/checkout@v4
18-
env:
19-
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
2021
- name: Install dosbox-x and xvfb
2122
run: |
2223
sudo apt-get install -y xvfb
@@ -104,8 +105,8 @@ jobs:
104105
run: |
105106
echo "Files in WOLF3D/:"
106107
ls -la WOLF3D/
107-
if [ ! -f WOLF3D/wolf3d.exe ]; then
108-
echo "ERROR: wolf3d.exe not found in build artifact" >&2
108+
if [ ! -f WOLF3D/WOLF3D.EXE ]; then
109+
echo "ERROR: WOLF3D.EXE not found in build artifact" >&2
109110
exit 1
110111
fi
111112
@@ -118,7 +119,7 @@ jobs:
118119
[autoexec]
119120
mount c .
120121
c:
121-
wolf3d.exe
122+
WOLF3D.EXE
122123
EOF
123124
124125
- name: Package hra.jsdos

0 commit comments

Comments
 (0)