Skip to content

Commit db5eec4

Browse files
committed
Update some config wording
1 parent bdc6e8a commit db5eec4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ inputs:
44
github_token:
55
description: "Github token with commit and push scope"
66
required: true
7-
arch:
7+
repo_supported_arch:
88
description: "Newline-delimited list of supported architecture"
99
required: true
10-
version:
10+
repo_supported_version:
1111
description: "Newline-delimited list of supported (linux) version"
1212
required: true
1313
file:

entrypoint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
logging.info('-- Parsing input --')
2121

2222
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')
2525
deb_file_path = os.environ.get('INPUT_FILE')
2626
deb_file_target_version = os.environ.get('INPUT_FILE_TARGET_VERSION')
2727
github_repo = os.environ.get('GITHUB_REPOSITORY')

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ This action will setup and manage a simple APT repo on your github pages
88

99
**Required** Personal access token with commit and push scope granted.
1010

11-
### `arch`
11+
### `repo_supported_arch`
1212

1313
**Required** Newline-delimited list of supported architecture
1414

15-
### `version`
15+
### `repo_supported_version`
1616

1717
**Required** Newline-delimited list of supported (linux) version
1818

0 commit comments

Comments
 (0)