Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed Sep 19, 2021
1 parent 393513c commit 3a683f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,11 @@ jobs:
architecture: ${{ matrix.arch }}

- name: Install dependencies
shell: bash
run: |
pip3 install --upgrade pip wheel
pip3 install --upgrade poetry PyInstaller ${{ matrix.qt }}
poetry install -E ${{ matrix.qt }}
poetry install -E ${{ matrix.qt.lowercase }}
poetry build
pip3 install dist/*.whl
Expand Down
4 changes: 3 additions & 1 deletion scripts/build-appimage.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
#!/usr/bin/env bash
set -euxo pipefail

sudo chown "$(whoami):$(whoami)" -R .

export APPIMAGE_EXTRACT_AND_RUN=1
wget -q https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage && chmod +x appimagetool-x86_64.AppImage


if [[ "$GUISCRCPY_TYPE" == "r" ]]; then
SCRCPY_APPIMAGE_DOWNLOAD_URL="$(curl -sL https://api.github.com/repos/srevinsaju/scrcpy-appimage/releases/latest | jq -r '.assets[].browser_download_url')"
SCRCPY_APPIMAGE_DOWNLOAD_URL="$(curl -sL https://api.github.com/repos/srevinsaju/scrcpy-appimage/releases/latest | jq -r '.assets[].browser_download_url' | grep -v 'zsync')"
export SCRCPY_APPIMAGE_DOWNLOAD_URL

wget -q "$SCRCPY_APPIMAGE_DOWNLOAD_URL"
Expand Down

0 comments on commit 3a683f8

Please sign in to comment.