diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3124f14..043cfd9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,11 @@ jobs: # your project is available for Godot to export - name: checkout uses: actions/checkout@v3.3.0 - + - name: install wine + id: wine_install + run: | + sudo apt install wine64 + echo "WINE_PATH=$(which wine64)" >> $GITHUB_OUTPUT - name: export game id: export # Use latest version (see releases for all versions) @@ -29,6 +33,7 @@ jobs: godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/4.2.1/Godot_v4.2.1-stable_export_templates.tpz relative_project_path: ./ archive_output: true + wine_path: ${{ steps.wine_install.outputs.WINE_PATH }} # This release action has worked well for me. However, you can most likely use any release action of your choosing. # https://github.com/ncipollo/release-action