-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updates to ouput setting * update dist * update release action Co-authored-by: Firebelley <[email protected]>
- Loading branch information
1 parent
f2f5d54
commit 4b31766
Showing
6 changed files
with
685 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,12 @@ jobs: | |
- name: get tag from version | ||
id: tag_version | ||
run: | | ||
echo ::set-output name=TAG_VERSION::${GITHUB_REF#refs/tags/v} | ||
echo "TAG_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT | ||
- name: install wine | ||
id: wine_install | ||
run: | | ||
sudo apt install wine64 | ||
echo ::set-output name=WINE_PATH::$(which wine64) | ||
echo "WINE_PATH=$(which wine64)" >> $GITHUB_OUTPUT | ||
- name: export game | ||
id: export | ||
uses: firebelley/[email protected] | ||
|
@@ -32,9 +32,9 @@ jobs: | |
archive_output: true | ||
wine_path: ${{ steps.wine_install.outputs.WINE_PATH }} | ||
- name: create release | ||
uses: softprops/action-gh-release@v0.1.14 | ||
uses: ncipollo/release[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
generate_release_notes: true | ||
tag_name: ${{ steps.tag_version.outputs.TAG_VERSION }} | ||
files: ${{ steps.export.outputs.archive_directory }}/* # Added "/*" at the end is glob pattern match for this action | ||
generateReleaseNotes: true | ||
tag: ${{ steps.tag_version.outputs.TAG_VERSION }} | ||
artifacts: ${{ steps.export.outputs.archive_directory }}/* # Added "/*" at the end is glob pattern match for this action |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,7 @@ jobs: | |
- name: get tag from version | ||
id: tag_version | ||
run: | | ||
echo ::set-output name=TAG_VERSION::${GITHUB_REF#refs/tags/v} | ||
echo "TAG_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT | ||
- name: export game | ||
id: export | ||
|
@@ -96,14 +96,14 @@ jobs: | |
archive_output: true | ||
|
||
# This release action has worked well for me. However, you can most likely use any release action of your choosing. | ||
# https://github.com/softprops/action-gh-release | ||
# https://github.com/ncipollo/release-action | ||
- name: create release | ||
uses: softprops/action-gh-release@v0.1.14 | ||
uses: ncipollo/release[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
generate_release_notes: true | ||
tag_name: ${{ steps.tag_version.outputs.TAG_VERSION }} | ||
files: ${{ steps.export.outputs.archive_directory }}/* | ||
generateReleaseNotes: true | ||
tag: ${{ steps.tag_version.outputs.TAG_VERSION }} | ||
artifacts: ${{ steps.export.outputs.archive_directory }}/* | ||
``` | ||
## Custom Editor Settings | ||
|
@@ -137,7 +137,7 @@ In order to configure this action to update your game's Windows exe icon, includ | |
id: wine_install | ||
run: | | ||
sudo apt install wine64 | ||
echo ::set-output name=WINE_PATH::$(which wine64) | ||
echo "WINE_PATH=$(which wine64)" >> $GITHUB_OUTPUT | ||
# Any other intermediate steps can go here | ||
|
Oops, something went wrong.