forked from s0faking/plugin.video.orftvthek
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workflows: add Kodi Addon Submitter deployment
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
on: | ||
push: | ||
tags: '*' | ||
|
||
jobs: | ||
kodi-addon-submitter: | ||
if: github.repository == 's0faking/plugin.video.orftvthek' | ||
runs-on: ubuntu-latest | ||
name: Kodi addon submitter | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: Generate distribution zip and submit to official kodi repository | ||
id: kodi-addon-submitter | ||
uses: xbmc/[email protected] | ||
with: | ||
addon-id: ${{ github.event.repository.name }} | ||
kodi-repository: repo-plugins | ||
kodi-version: matrix | ||
env: | ||
GH_USERNAME: ${{ github.repository_owner }} | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
EMAIL: ${{ secrets.EMAIL }} | ||
- name: Create GitHub Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref_name }} | ||
release_name: Release ${{ github.ref_name }} | ||
draft: false | ||
prerelease: false | ||
- name: Upload Addon zip to GitHub Release | ||
id: upload-release-asset | ||
uses: actions/upload-release-asset@v1 | ||
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 |