Skip to content

Update publish-addon.yml #4

Update publish-addon.yml

Update publish-addon.yml #4

Workflow file for this run

name: Publish addon
on:
push:
branches: [ kodi-release ]
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.3
with: # Replace all the below variables
kodi-repository: repo-scripts
kodi-version: krypton
addon-id: weather.gismeteo
kodi-matrix: true # Submit a Python 2/3 compatible addon to matrix branch in addition to the target branch
sub-directory: true
env: # Make sure you create the below secrets (GH_TOKEN and EMAIL)
GH_USERNAME: ${{ github.actor }}
GH_TOKEN: ${{secrets.GH_TOKEN}}
EMAIL: ${{secrets.EMAIL}}