Skip to content

Commit

Permalink
chore: 构建的时候去掉符号表
Browse files Browse the repository at this point in the history
  • Loading branch information
qiqizjl committed Oct 1, 2022
1 parent a1c7256 commit d3c2e1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
name: compress binrary
run: |
cd bin
strip swoole-cli
tar -cJvf swoole-cli.tar.xz swoole-cli LICENSE
mv swoole-cli.tar.xz ../swoole-cli.tar.xz
- if: startsWith(github.event.ref, 'refs/tags')
Expand All @@ -73,7 +74,7 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: swoole-cli.tar.xz
asset_name: swoole-cli-linux-x64-${{ github.ref_name }}.tar.gz
asset_name: swoole-cli-linux-x64-${{ github.ref_name }}.tar.xz
tag: ${{ github.ref }}
overwrite: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: swoole-cli.tar.xz
asset_name: swoole-cli-macos.x64-${{ github.ref_name }}.tar.gz
asset_name: swoole-cli-macos.x64-${{ github.ref_name }}.tar.xz
tag: ${{ github.ref }}
overwrite: true

0 comments on commit d3c2e1f

Please sign in to comment.