-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .gitattributes and update addon submitter to v1.3
- Loading branch information
1 parent
8cbe0f1
commit f3fdb69
Showing
2 changed files
with
9 additions
and
3 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,6 @@ | ||
# These files are blocked from the release.zip creation | ||
.gitignore export-ignore | ||
.gitattributes export-ignore | ||
.github export-ignore | ||
*.pyc export-ignore | ||
*.pyo export-ignore |
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 |
---|---|---|
|
@@ -14,15 +14,15 @@ jobs: | |
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.1 | ||
uses: xbmc/action-kodi-addon-submitter@v1.3 | ||
with: | ||
kodi-repository: repo-scripts | ||
kodi-version: matrix | ||
addon-id: script.cabertoss | ||
env: # Make sure you create the below secrets (GH_TOKEN and EMAIL) | ||
GH_USERNAME: ${{ github.actor }} | ||
GH_TOKEN: ${{secrets.GH_TOKEN}} | ||
EMAIL: ${{secrets.EMAIL}} | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
EMAIL: ${{ secrets.EMAIL }} | ||
- name: Create Github Release | ||
id: create_release | ||
uses: actions/[email protected] | ||
|