Skip to content

Commit

Permalink
Update some config wording
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandiny committed May 15, 2020
1 parent bdc6e8a commit db5eec4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ inputs:
github_token:
description: "Github token with commit and push scope"
required: true
arch:
repo_supported_arch:
description: "Newline-delimited list of supported architecture"
required: true
version:
repo_supported_version:
description: "Newline-delimited list of supported (linux) version"
required: true
file:
Expand Down
4 changes: 2 additions & 2 deletions entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
logging.info('-- Parsing input --')

github_token = os.environ.get('INPUT_GITHUB_TOKEN')
supported_arch = os.environ.get('INPUT_ARCH')
supported_version = os.environ.get('INPUT_VERSION')
supported_arch = os.environ.get('INPUT_REPO_SUPPORTED_ARCH')
supported_version = os.environ.get('INPUT_REPO_SUPPORTED_VERSION')
deb_file_path = os.environ.get('INPUT_FILE')
deb_file_target_version = os.environ.get('INPUT_FILE_TARGET_VERSION')
github_repo = os.environ.get('GITHUB_REPOSITORY')
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ This action will setup and manage a simple APT repo on your github pages

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

### `arch`
### `repo_supported_arch`

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

### `version`
### `repo_supported_version`

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

Expand Down

0 comments on commit db5eec4

Please sign in to comment.