Skip to content

Commit

Permalink
update action
Browse files Browse the repository at this point in the history
  • Loading branch information
level3tjg committed Sep 25, 2024
1 parent cc37c84 commit 586583f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,18 @@ jobs:
fi
echo "id=$(cat control | grep "Package:" | cut -d' ' -f2)" >> $GITHUB_OUTPUT
echo "version=$version" >> $GITHUB_OUTPUT
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y rsync
- name: Install theos-jailed dependencies
if: ${{ inputs.create_release }}
run: |
sudo apt update
sudo apt install -y build-essential checkinstall git autoconf automake libtool-bin rsync llvm xmlstarlet
curl -L https://github.com/libimobiledevice/libplist/releases/download/2.4.0/libplist-2.4.0.tar.bz2 | bzip2 -d | tar -x
sudo apt install -y build-essential checkinstall git autoconf automake libtool-bin llvm xmlstarlet
curl -L https://github.com/libimobiledevice/libplist/releases/download/2.6.0/libplist-2.6.0.tar.bz2 | bzip2 -d | tar -x
cd libplist*
./configure
sudo make install
Expand Down Expand Up @@ -85,8 +90,6 @@ jobs:
if: ${{ inputs.create_release }}
run: |
./theos-jailed/install
cd libplist*
sudo make uninstall
- name: Build rootless deb
run: make package
Expand Down

0 comments on commit 586583f

Please sign in to comment.