File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed
Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 88 client_id :
99 required : true
1010 description : ' The client ID'
11- client_secret :
11+ api_key :
1212 required : true
13- description : ' The client secret'
14- access_token_url :
15- required : true
16- description : ' The URL where to fetch an access token from'
13+ description : ' The API key'
1714 zip :
1815 required : true
1916 description : ' Path to a .zip of your addon'
3128 args :
3229 - ${{ inputs.product_id }}
3330 - ${{ inputs.client_id }}
34- - ${{ inputs.client_secret }}
35- - ${{ inputs.access_token_url }}
31+ - ${{ inputs.api_key }}
3632 - ${{ inputs.zip }}
3733 - ${{ inputs.notes }}
3834 - ${{ inputs.debug }}
Original file line number Diff line number Diff line change 1212
1313product_id = sys .argv [1 ]
1414client_id = sys .argv [2 ]
15- client_secret = sys .argv [3 ]
16- access_token_url = sys .argv [4 ]
15+ api_key = sys .argv [3 ]
1716file_path = sys .argv [5 ]
1817notes = sys .argv [6 ]
1918debug = sys .argv [7 ].lower () in ["true" , "1" ]
3029options = Options (
3130 product_id = product_id ,
3231 client_id = client_id ,
33- client_secret = client_secret ,
32+ api_key = api_key ,
3433 access_token_url = access_token_url ,
3534)
3635
You can’t perform that action at this time.
0 commit comments