Swap legacy secrets for current secrets

This commit is contained in:
Joshua M. Boniface
2025-02-23 11:46:11 -05:00
parent f20d0f9a69
commit 512556dfba

View File

@@ -48,16 +48,16 @@ jobs:
switches: -vrptz switches: -vrptz
path: '*.zip' path: '*.zip'
remote_path: /srv/incoming/kodi remote_path: /srv/incoming/kodi
remote_host: ${{ secrets.DEPLOY_HOST }} remote_host: ${{ secrets.REPO_HOST }}
remote_user: ${{ secrets.DEPLOY_USER }} remote_user: ${{ secrets.REPO_USER }}
remote_key: ${{ secrets.DEPLOY_KEY }} remote_key: ${{ secrets.REPO_KEY }}
- name: Add to Kodi repo and clean up - name: Add to Kodi repo and clean up
uses: appleboy/ssh-action@v1.2.0 uses: appleboy/ssh-action@v1.2.0
with: with:
host: ${{ secrets.DEPLOY_HOST }} host: ${{ secrets.REPO_HOST }}
username: ${{ secrets.DEPLOY_USER }} username: ${{ secrets.REPO_USER }}
key: ${{ secrets.DEPLOY_KEY }} key: ${{ secrets.REPO_KEY }}
script_stop: true script_stop: true
script: | script: |
python3 /usr/local/bin/kodirepo add /srv/incoming/kodi/plugin.video.jellycon+${{ matrix.py_version }}.zip --datadir /srv/repository/main/client/kodi/${{ matrix.py_version }}; python3 /usr/local/bin/kodirepo add /srv/incoming/kodi/plugin.video.jellycon+${{ matrix.py_version }}.zip --datadir /srv/repository/main/client/kodi/${{ matrix.py_version }};