From 77b8f6c6ee93bf9a28f903d85fc1d26a63e14f54 Mon Sep 17 00:00:00 2001 From: Artem Chepurnyi Date: Thu, 17 Oct 2024 15:52:09 +0300 Subject: [PATCH] chore(fdroid): Setup Python correctly --- .github/workflows/new_release_deploy_fdroid.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/new_release_deploy_fdroid.yml b/.github/workflows/new_release_deploy_fdroid.yml index 75a398bd..0a1d42d4 100644 --- a/.github/workflows/new_release_deploy_fdroid.yml +++ b/.github/workflows/new_release_deploy_fdroid.yml @@ -20,13 +20,15 @@ jobs: lfs: true path: deploy_fdroid token: ${{ secrets.DEPLOY_FDROID_GITHUB_TOKEN }} + - name: "Prepare dependencies declaration" + run: | + mv .github/deploy_fdroid.requirements.txt requirements.txt - uses: actions/setup-python@v5 with: python-version: '3.10' cache: 'pip' - name: "Download dependencies" run: | - pip install -r .github/deploy_fdroid.requirements.txt pip install git+https://gitlab.com/fdroid/fdroidserver.git - name: "Prepare env" working-directory: ./deploy_fdroid