Merge pull request #922 from jellyfin/renovate/actions-checkout-4.x #381
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: Build Jellyfin-Kodi | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.2.2 | |
- name: Set up Python | |
uses: actions/setup-python@v5.3.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@v4.4.3 | |
with: | |
retention-days: 14 | |
name: py3-build-artifact | |
path: | | |
*.zip |