Skip to content

Commit

Permalink
Prepare 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
razzeee committed Jun 13, 2020
1 parent aa4110c commit 9dedb2f
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.gitignore export-ignore
.gitattributes export-ignore
.github export-ignore
changelog.txt export-ignore
.travis.yml export-ignore
46 changes: 46 additions & 0 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Kodi Addon-Submitter

on:
create:
tags:
- v*

jobs:
kodi-addon-submitter:
runs-on: ubuntu-latest
name: Kodi addon submitter
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Generate distribution zip and submit to official kodi repository
id: kodi-addon-submitter
uses: xbmc/action-kodi-addon-submitter@v1.1
with:
kodi-repository: repo-scripts
kodi-version: matrix
addon-id: context.trakt.watched
kodi-matrix: true # Submit a Python 2/3 compatible addon to matrix branch in addition to the target branch
env: # Make sure you create the below secrets (GH_TOKEN and EMAIL)
GH_USERNAME: ${{ github.actor }}
GH_TOKEN: ${{secrets.GH_TOKEN}}
EMAIL: ${{secrets.EMAIL}}
- name: Create Github Release
id: create_release
uses: actions/create-release@v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Addon zip to github release
id: upload-release-asset
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ steps.kodi-addon-submitter.outputs.addon-zip }}
asset_name: ${{ steps.kodi-addon-submitter.outputs.addon-zip }}
asset_content_type: application/zip
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: python
matrix:
include:
- python: "3.7.0"

# command to install dependencies
install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.7.0" ]]; then
pip install git+https://github.com/xbmc/addon-check.git;
fi

# command to run tests
script:
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.7.0" ]]; then
kodi-addon-checker $TRAVIS_BUILD_DIR --branch=matrix;
fi
4 changes: 2 additions & 2 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="context.trakt.watched" name="Trakt - Watched button" version="1.0.4" provider-name="Razzeee">
<addon id="context.trakt.watched" name="Trakt - Watched button" version="1.1.0" provider-name="Razzeee">
<requires>
<import addon="xbmc.python" version="2.26.0"/>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.trakt" version="3.0.2"/>
</requires>
<extension point="kodi.context.item">
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v1.1.0
- Updated for kodi matrix (python 3)

version 1.0.3
- Updated for Kodi Leia

Expand Down

0 comments on commit 9dedb2f

Please sign in to comment.