From 00000d9755dc6b73118034a7ae0fd6e61a96ddd0 Mon Sep 17 00:00:00 2001 From: doms9 <96013514+doms9@users.noreply.github.com> Date: Mon, 1 Sep 2025 22:56:41 -0400 Subject: [PATCH] e --- .github/workflows/m3u8.yml | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/.github/workflows/m3u8.yml b/.github/workflows/m3u8.yml index 1903772..5456400 100644 --- a/.github/workflows/m3u8.yml +++ b/.github/workflows/m3u8.yml @@ -22,12 +22,6 @@ jobs: with: fetch-depth: 0 - - name: Setup SSH Agent - if: steps.check_time.outputs.run == 'true' - uses: webfactory/ssh-agent@v0.9.0 - with: - ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - - name: Cache venv if: steps.check_time.outputs.run == 'true' uses: actions/cache@v3 @@ -62,24 +56,10 @@ jobs: ${{ runner.os }}-playwright - name: Install Playwright browsers - if: steps.check_time.outputs.run == 'true' - run: uv run playwright install - - - name: Install Playwright deps if: steps.check_time.outputs.run == 'true' run: | - set -e - missing_pkgs=() - for pkg in libevent-2.1-7 libavif13; do - if ! dpkg -s $pkg >/dev/null 2>&1; then - missing_pkgs+=($pkg) - fi - done - - if (( ${#missing_pkgs[@]} > 0 )); then - apt-get update - apt-get install -y "${missing_pkgs[@]}" - fi + uv run playwright install + uv run playwright install-deps - name: Fetch M3U8 if: steps.check_time.outputs.run == 'true'