Skip to content

Commit

Permalink
oh my workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil564 committed Jan 4, 2024
1 parent cc818dc commit cd71e23
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand Down

0 comments on commit cd71e23

Please sign in to comment.