Skip to content

Commit

Permalink
Add doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
alexravenna committed Sep 15, 2023
1 parent 4c6d59e commit 88515f9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -55,7 +55,7 @@ inputs:
required: false
default: false
target:
description: 'Target architecture'
description: 'Target architecture(s) the extension should run on'
required: false
default: ''

Expand Down
8 changes: 8 additions & 0 deletions src/types.ts
Expand Up @@ -49,6 +49,14 @@ export interface ActionOptions {
*/
skipDuplicate?: boolean;

/**
* Target architecture(s) the extension should run on.
* This string needs to be formatted like 'arch1 arch2 arch3' when targeting multiple architectures.
*
* See the following for the possible target values:
*
* https://code.visualstudio.com/api/working-with-extensions/publishing-extension#platformspecific-extensions
*/
target?: string;
}

Expand Down

0 comments on commit 88515f9

Please sign in to comment.