Skip to content

Commit

Permalink
#fix: Fixed InnoSetup Chinese garbled characters
Browse files Browse the repository at this point in the history
  • Loading branch information
half-nothing committed Dec 31, 2023
1 parent a5c7b9a commit f562a17
Show file tree
Hide file tree
Showing 4 changed files with 550 additions and 555 deletions.
33 changes: 14 additions & 19 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,27 +45,21 @@ jobs:
gradle-version: 8.1.1

- name: Execute Gradle Tasks
run: gradle clean distJar
run: gradle clean distAll

# - name: Setup InnoSetup
# uses: Minionguyjpro/Inno-Setup-Action@latest
# with:
# path: docs/scripts/ExePacking.iss
# options: /Q

# - name: Upload Exe
# uses: actions/upload-artifact@v3
# if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
# with:
# name: ArkPets.exe
# path: desktop/build/dist/*.exe
- name: Upload Exe
uses: actions/upload-artifact@v3
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
with:
name: ArkPets.exe
path: desktop/build/dist/*.exe

# - name: Upload Zip
# uses: actions/upload-artifact@v3
# if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
# with:
# name: ArkPets.zip
# path: desktop/build/dist/*.zip
- name: Upload Zip
uses: actions/upload-artifact@v3
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
with:
name: ArkPets.zip
path: desktop/build/dist/*.zip

- name: Upload Jar
uses: actions/upload-artifact@v3
Expand All @@ -80,6 +74,7 @@ jobs:
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ github.ref_name }}"
draft: false
prerelease: false
title: "${{ github.ref_name }}"
files: desktop/build/dist/*
4 changes: 2 additions & 2 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f562a17

Please sign in to comment.