mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
name: Publish Jellyfin-Kodi
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update Draft
|
|
uses: release-drafter/release-drafter@v6.0.0
|
|
with:
|
|
publish: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.JF_BOT_TOKEN }}
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4.1.1
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5.0.0
|
|
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/upload-artifact@v3.1.3
|
|
with:
|
|
retention-days: 14
|
|
name: py3-build-artifact
|
|
path: |
|
|
*.zip
|
|
|
|
- name: Upload to repo server
|
|
uses: burnett01/rsync-deployments@6.0.0
|
|
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/ssh-action@v1.0.3
|
|
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
|