Skip to content

Commit 12a35cd

Browse files
authored
Fix action parameters (#7)
1 parent ce746fd commit 12a35cd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ runs:
3535
- ${{ inputs.access_token_url }}
3636
- ${{ inputs.zip }}
3737
- ${{ inputs.notes }}
38+
- ${{ inputs.debug }}
3839
branding:
3940
icon: 'book'
4041
color: 'blue'

entrypoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from edge_addons_api.client import Client, Options
77
from edge_addons_api.exceptions import UploadException
88

9-
if len(sys.argv) != 8:
9+
if len(sys.argv) < 6:
1010
print("Incorrect number of arguments given. Please check action parameters")
1111
sys.exit(1)
1212

0 commit comments

Comments
 (0)