Skip to content

Commit 4e5905f

Browse files
committed
build.yml: Delete Supermodel.ini after running validation so it doesn't find its way into release packages
1 parent 7835800 commit 4e5905f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
with:
4242
fetch-depth: 0 # Fetch full git history (needed for changelog.sh script)
4343

44-
- name: Install ubuntu build dependencies
44+
- name: Install Ubuntu build dependencies
4545
if: startsWith(matrix.os, 'ubuntu')
4646
run: |
4747
sudo apt update
4848
sudo apt install -y libsdl2-dev libsdl2-net-dev libglu1-mesa-dev
4949
50-
- name: Install windows build dependencies
50+
- name: Install Windows build dependencies
5151
if: startsWith(matrix.os, 'windows')
5252
uses: msys2/setup-msys2@v2
5353
with:
@@ -73,6 +73,8 @@ jobs:
7373
else
7474
./bin/supermodel -print-games
7575
fi
76+
# Remove auto-generated default Supermodel.ini. We do not want to bundle this into packages.
77+
rm Config/Supermodel.ini
7678
7779
- name: Create package
7880
run: |

0 commit comments

Comments
 (0)