Skip to content

Commit

Permalink
Work around Godot configuration issue
Browse files Browse the repository at this point in the history
  • Loading branch information
outfrost committed Feb 13, 2024
1 parent fc1acbe commit 976c944
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
run: |
echo "${{ steps.tag_version.outputs.TAG_VERSION }}" > ./version.txt
- name: Run pre-export script
run: ./pre_export.sh
shell: bash

- name: Export project
uses: firebelley/godot-export@v5.2.1
with:
Expand Down
5 changes: 5 additions & 0 deletions pre_export.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh
mkdir -p .godot/
if [ ! -f '.godot/extension_list.cfg' ]; then
echo "res://addons/fmod/fmod.gdextension" > .godot/extension_list.cfg
fi

0 comments on commit 976c944

Please sign in to comment.