Use trakt user #20
Workflow file for this run
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: Kodi Addon-Submitter | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
kodi-addon-submitter: | |
runs-on: ubuntu-latest | |
name: Kodi addon submitter | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Generate distribution zip and submit to official kodi repository | |
id: kodi-addon-submitter | |
uses: xbmc/action-kodi-addon-submitter@v1.3 | |
with: | |
kodi-repository: repo-scripts | |
kodi-version: matrix | |
addon-id: script.trakt | |
env: # Make sure you create the below secrets (GH_TOKEN and EMAIL) | |
GH_USERNAME: trakt | |
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 |