Publish Jellyfin-Kodi #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Jellyfin-Kodi | |
on: | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update Draft | |
uses: release-drafter/[email protected] | |
with: | |
publish: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.JF_BOT_TOKEN }} | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pyyaml | |
- name: Build addon | |
run: python build.py | |
- name: Publish Build Artifact | |
uses: actions/[email protected] | |
with: | |
retention-days: 14 | |
name: py3-build-artifact | |
path: | | |
*.zip | |
- name: Upload to repo server | |
uses: burnett01/[email protected] | |
with: | |
switches: -vrptz | |
path: '*.zip' | |
remote_path: /srv/incoming/kodi | |
remote_host: ${{ secrets.REPO_HOST }} | |
remote_user: ${{ secrets.REPO_USER }} | |
remote_key: ${{ secrets.REPO_KEY }} | |
- name: Add to Kodi repo and clean up | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.REPO_HOST }} | |
username: ${{ secrets.REPO_USER }} | |
key: ${{ secrets.REPO_KEY }} | |
script_stop: true | |
script: | | |
sudo /usr/local/bin/kodirepo add /srv/incoming/kodi/plugin.video.jellyfin+py3.zip --datadir /srv/repository/main/client/kodi/py3 | |
rm /srv/incoming/kodi/plugin.video.jellyfin+py3.zip |