From 8f3dca3f8742290a82ff3e2ef0f1fd0a7f33cc91 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 9 Mar 2024 12:25:10 -0500 Subject: [PATCH] Update CI to new repository secrets and layout --- .github/workflows/app-publish.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/app-publish.yaml b/.github/workflows/app-publish.yaml index 7dbfca6c8..b2c56af14 100644 --- a/.github/workflows/app-publish.yaml +++ b/.github/workflows/app-publish.yaml @@ -79,20 +79,20 @@ jobs: with: switches: -vrptz path: build/jellyfin-publish/ - remote_path: /srv/repository/releases/client/android/versions/v${{ env.JELLYFIN_VERSION }} - remote_host: ${{ secrets.DEPLOY_HOST }} - remote_user: ${{ secrets.DEPLOY_USER }} - remote_key: ${{ secrets.DEPLOY_KEY }} + remote_path: /srv/repository/main/client/android/versions/v${{ env.JELLYFIN_VERSION }} + remote_host: ${{ secrets.REPO_HOST }} + remote_user: ${{ secrets.REPO_USER }} + remote_key: ${{ secrets.REPO_KEY }} - name: Update repo.jellyfin.org symlinks uses: appleboy/ssh-action@8f949198563a347a01c65ffc60399aef2b59d4ab # v1.0.1 with: - host: ${{ secrets.DEPLOY_HOST }} - username: ${{ secrets.DEPLOY_USER }} - key: ${{ secrets.DEPLOY_KEY }} + host: ${{ secrets.REPO_HOST }} + username: ${{ secrets.REPO_USER }} + key: ${{ secrets.REPO_KEY }} envs: JELLYFIN_VERSION script_stop: true script: | - cd /srv/repository/releases/client/android; + cd /srv/repository/main/client/android; rm -rf *.apk version.txt; ln -s versions/v${JELLYFIN_VERSION}/jellyfin-android-v${JELLYFIN_VERSION}-*.apk .; ln -s versions/v${JELLYFIN_VERSION}/version.txt .;