Translated using Weblate (Danish) #374
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/[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 |