File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 9
9
steps :
10
10
11
11
- name : Checkout
12
- uses : actions/checkout@v2
12
+ uses : actions/checkout@v3
13
13
with :
14
14
fetch-depth : 0
15
15
@@ -22,11 +22,13 @@ jobs:
22
22
run : |
23
23
python -m pip install --upgrade pip
24
24
pip3 install --user kodi-addon-checker
25
+
25
26
- name : Extract job variables
26
27
shell : bash
27
- run : echo "##[set-output name=addon;]$(git diff --diff-filter=d --name-only HEAD~ | grep / | cut -d / -f1 | sort | uniq)"
28
+
29
+ run : |
30
+ echo "addon=$(git diff --diff-filter=d --name-only HEAD~ | grep / | cut -d / -f1 | sort | uniq)" >> $GITHUB_OUTPUT
28
31
id : extract_vars
29
32
30
33
- name : Addon-Check
31
34
run : $HOME/.local/bin/kodi-addon-checker --branch=${{ github.event.pull_request.base.ref }} --PR ${{ steps.extract_vars.outputs.addon }}
32
-
You can’t perform that action at this time.
0 commit comments