Skip to content

Commit

Permalink
v4.3.0 (#93)
Browse files Browse the repository at this point in the history
* updates to ouput setting

* update dist

* update release action

Co-authored-by: Firebelley <[email protected]>
  • Loading branch information
firebelley and firebelley authored Nov 18, 2022
1 parent f2f5d54 commit 4b31766
Show file tree
Hide file tree
Showing 6 changed files with 685 additions and 173 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading

0 comments on commit 4b31766

Please sign in to comment.