File tree 1 file changed +13
-1
lines changed
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -688,11 +688,23 @@ jobs:
688
688
689
689
steps :
690
690
- uses : actions/checkout@v4
691
+ - name : Install build dependencies packages
692
+ run : |
693
+ sudo rm /etc/apt/sources.list.d/microsoft-prod.list
694
+ sudo apt update
695
+ sudo apt dist-upgrade
696
+ sudo apt -y install pipx zsync
697
+ shell : bash
691
698
# We use AppImage Builder development version as 1.1 is failing
692
699
- name : Install AppImage Builder development version
693
700
id : install-appimage-builder
694
701
run : |
695
- pip3 install git+https://github.com/AppImageCrafters/appimage-builder.git
702
+ if command -v pipx >/dev/null; then
703
+ echo ~/.local/bin >> $GITHUB_PATH
704
+ pipx install git+https://github.com/AppImageCrafters/appimage-builder.git
705
+ else
706
+ pip3 install git+https://github.com/AppImageCrafters/appimage-builder.git
707
+ fi
696
708
shell : bash
697
709
- uses : actions/download-artifact@v4
698
710
with :
You can’t perform that action at this time.
0 commit comments