File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ inputs:
4
4
github_token :
5
5
description : " Github token with commit and push scope"
6
6
required : true
7
- arch :
7
+ repo_supported_arch :
8
8
description : " Newline-delimited list of supported architecture"
9
9
required : true
10
- version :
10
+ repo_supported_version :
11
11
description : " Newline-delimited list of supported (linux) version"
12
12
required : true
13
13
file :
Original file line number Diff line number Diff line change 20
20
logging .info ('-- Parsing input --' )
21
21
22
22
github_token = os .environ .get ('INPUT_GITHUB_TOKEN' )
23
- supported_arch = os .environ .get ('INPUT_ARCH ' )
24
- supported_version = os .environ .get ('INPUT_VERSION ' )
23
+ supported_arch = os .environ .get ('INPUT_REPO_SUPPORTED_ARCH ' )
24
+ supported_version = os .environ .get ('INPUT_REPO_SUPPORTED_VERSION ' )
25
25
deb_file_path = os .environ .get ('INPUT_FILE' )
26
26
deb_file_target_version = os .environ .get ('INPUT_FILE_TARGET_VERSION' )
27
27
github_repo = os .environ .get ('GITHUB_REPOSITORY' )
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ This action will setup and manage a simple APT repo on your github pages
8
8
9
9
** Required** Personal access token with commit and push scope granted.
10
10
11
- ### ` arch `
11
+ ### ` repo_supported_arch `
12
12
13
13
** Required** Newline-delimited list of supported architecture
14
14
15
- ### ` version `
15
+ ### ` repo_supported_version `
16
16
17
17
** Required** Newline-delimited list of supported (linux) version
18
18
You can’t perform that action at this time.
0 commit comments