File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ name = "pypi"
7
7
requests = " ==2.32.2"
8
8
jwt = " ==1.3.1"
9
9
cryptography = " ==42.0.5"
10
+ python-dotenv = " ==1.0.1"
10
11
11
12
[dev-packages ]
12
13
python-dotenv = " ==1.0.1"
Original file line number Diff line number Diff line change @@ -7,10 +7,12 @@ inputs:
7
7
required : true
8
8
github_app_private_key :
9
9
description : " Github App private key"
10
+ github_account_type :
11
+ description : " Github account user or organization"
10
12
runs :
11
13
using : ' docker'
12
14
image : ' Dockerfile'
13
15
args :
14
16
- ${{ inputs.github_app_id }}
15
17
- ${{ inputs.github_app_private_key }}
16
- - ${{ inputs.github_account_type }}
18
+ - ${{ inputs.github_account_type }}
Original file line number Diff line number Diff line change 4
4
cd /app && pipenv install --skip-lock
5
5
6
6
# run python program to generate token
7
- pipenv run python3 /app/generate_jwt.py --github_app_id " $1 " --github_app_private_key " $2 "
7
+ pipenv run python3 /app/generate_jwt.py --github_app_id " $1 " --github_app_private_key " $2 " --github_account_type " $3 "
8
8
9
9
You can’t perform that action at this time.
0 commit comments