forked from xfgryujk/blivechat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2ca054
commit c7c166b
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -49,13 +49,13 @@ jobs: | |
- name: Zip Files | ||
uses: vimtor/[email protected] | ||
with: | ||
files: dist/main/* | ||
dest: dist/blivechat.zip | ||
files: build/main/* | ||
dest: build/blivechat.zip | ||
|
||
- name: Upload EXE to GitHub Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: dist/blivechat.zip # 假设生成的EXE文件在dist目录下 | ||
files: build/blivechat.zip # 假设生成的EXE文件在dist目录下 | ||
tag_name: ${{ steps.date.outputs.date }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |