Skip to content

Commit

Permalink
ci: fix build *.deb
Browse files Browse the repository at this point in the history
miss libqt5svg5-dev
  • Loading branch information
XMuli committed Jul 5, 2022
1 parent 9a8e5bd commit fe413a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/LinuxDeb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,23 +43,23 @@ jobs:
run: |
$systemInfo="${{ env.targetOS }}-x64"
$productVersion="${{ github.ref }}".substring("refs/tags/v".length)
# $productName="${{ env.targetName }}-$productVersion-beta-protable-$systemInfo"
# $productName="${{ env.targetName }}-$productVersion-beta-$systemInfo"
$productDebName="${{ env.targetLowerName }}-$productVersion"
echo "systemInfo=$systemInfo" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "productVersion=$productVersion" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# echo "productName=$productName" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "productDebName=$productDebName" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# 安装一些包
# 安装一些包 # libqt5*-dev
- name: AptInstallTool
id: AptInstallTool
if: startsWith(github.event.ref, 'refs/tags/')
shell: bash
run: |
sudo apt clean
sudo apt update
sudo apt install wget tar dh-make debmake lintian cmake qtbase5-dev qt5-default libqt5x11extras5-dev
sudo apt install wget tar dh-make debmake lintian cmake qtbase5-dev qt5-default libqt5x11extras5-dev libqt5svg5-dev libqt5*-dev
# tag 打包 .deb,无动态库
- name: DebPackage
Expand Down

0 comments on commit fe413a4

Please sign in to comment.