Skip to content

Commit 81daf9b

Browse files
authored
Merge pull request #5 from luke-b/copilot/fix-github-actions-pipeline
fix: deploy-demo failing due to case-sensitive EXE filename check
2 parents e62c2d3 + b5a9689 commit 81daf9b

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)