Skip to content

Commit

Permalink
workflows: add Kodi Addon Submitter deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Rechi committed Jun 9, 2024
1 parent c51e97b commit 9735ed5
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
on:
push:
tags: '*'

jobs:
kodi-addon-submitter:
if: github.repository == 'Rechi/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
continue-on-error: true
uses: xbmc/[email protected]
with:
addon-id: ${{ github.event.repository.name }}
- 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

0 comments on commit 9735ed5

Please sign in to comment.