Skip to content

Commit

Permalink
v6.0.0 (#136)
Browse files Browse the repository at this point in the history
* minor updates

* update documentation

---------

Co-authored-by: firebelley <firebelley@users.noreply.github.com>
  • Loading branch information
firebelley and firebelley authored Oct 12, 2024
1 parent 386b282 commit 2996591
Show file tree
Hide file tree
Showing 8 changed files with 74,120 additions and 45,680 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
name: Export Game Job
steps:
- name: checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4
- name: install wine
id: wine_install
run: |
sudo apt install wine64
echo "WINE_PATH=$(which wine64)" >> $GITHUB_OUTPUT
- name: export game
id: export
uses: firebelley/godot-export@v5.2.0
uses: firebelley/godot-export@v6.0.0
with:
godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_linux.x86_64.zip
godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_export_templates.tpz
Expand All @@ -26,7 +26,7 @@ jobs:
archive_output: true
wine_path: ${{ steps.wine_install.outputs.WINE_PATH }}
- name: create release
uses: ncipollo/release-action@v1.11.2
uses: ncipollo/release-action@v1.14.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ jobs:
name: Lint
steps:
- name: checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4
- run: |
yarn install && yarn lint
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Firebelley
Copyright (c) 2024 Firebelley

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ jobs:
# Always include the checkout step so that
# your project is available for Godot to export
- name: checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4

- name: export game
id: export
# Use latest version (see releases for all versions)
uses: firebelley/godot-export@v5.2.0
uses: firebelley/godot-export@v6.0.0
with:
# Defining all the required inputs
godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_linux.x86_64.zip
Expand All @@ -95,7 +95,7 @@ jobs:
# 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
- name: create release
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1.14.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
Expand Down Expand Up @@ -139,7 +139,7 @@ In order to configure this action to update your game's Windows exe icon, includ
# Any other intermediate steps can go here
- name: export game
uses: firebelley/godot-export@v5.2.0
uses: firebelley/godot-export@v6.0.0
with:
# ...supply your other options here
wine_path: ${{ steps.wine_install.outputs.WINE_PATH }} # set the wine path here which is the output of the wine_install step
Expand Down
Loading

0 comments on commit 2996591

Please sign in to comment.