Skip to content

Commit

Permalink
fix: 修正目录
Browse files Browse the repository at this point in the history
  • Loading branch information
DuckDuckStudio committed Dec 25, 2024
1 parent 89d3d33 commit 9ad7b26
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
- name: 创建发行文件 - Windows
if: runner.os == 'Windows'
run: |
# 创建Release目录
mkdir -p Release
# 压缩输出到Release目录
7z a -tzip Release/GitHubView.zip output/*
Expand All @@ -50,6 +53,9 @@ jobs:
env:
MAINTAINER_EMAIL: ${{ secrets.Maintainer_Email }}
run: |
# 创建Release目录
mkdir -p Release
# 压缩输出到Release目录
tar -czf Release/GitHubView.tar.gz output/*
Expand All @@ -72,6 +78,9 @@ jobs:
- name: 创建发行文件 - macOS
if: runner.os == 'macOS'
run: |
# 创建Release目录
mkdir -p Release
# 压缩输出到Release目录
zip -r Release/GitHubView.zip output/*
Expand Down

0 comments on commit 9ad7b26

Please sign in to comment.