We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7977aeb commit 4ad1fc4Copy full SHA for 4ad1fc4
1 file changed
.github/workflows/export-addon.yml
@@ -40,7 +40,8 @@ jobs:
40
python3 << 'PY'
41
import os
42
from xml.etree import ElementTree as ET
43
- tree = ET.parse('plugin.video.iptvxc/addon.xml')
+ # we run inside the checked-out addon repo directory, parse addon.xml directly
44
+ tree = ET.parse('addon.xml')
45
root = tree.getroot()
46
version = root.get('version')
47
description = root.find('.//description').text.strip() if root.find('.//description') is not None else ''
@@ -74,7 +75,9 @@ jobs:
74
75
76
- name: Copy addon files
77
run: |
- cp -r plugin.video.iptvxc/* kodi-repo/repository.nigel1992/addons/plugin.video.iptvxc/
78
+ # include dotfiles and hidden files
79
+ shopt -s dotglob || true
80
+ cp -r ./* kodi-repo/repository.nigel1992/addons/plugin.video.iptvxc/
81
82
- name: Update Repository README
83
0 commit comments