@@ -15,15 +15,18 @@ inputs:
1515 cli_version :
1616 description : " CLI Version"
1717 required : false
18- npm_token :
19- description : " NPM token"
20- required : false
2118 extension_schema :
2219 description : " Extension schema"
2320 required : false
2421 allow_owners_only_for_extensions :
2522 description : " Whitelist extensions allowed to have owners - each extension in new line. If not set or empty, all extensions are allowe to have it."
2623 required : false
24+ npmrc_path :
25+ description : " Path to npmrc file to access private npm packages"
26+ required : false
27+ raycast_api_alpha_npm_token :
28+ description : " NPM token for alpha version of @raycast/api"
29+ required : false
2730outputs :
2831 command :
2932 description : " Ray CLI command executed"
@@ -42,29 +45,30 @@ runs:
4245 with :
4346 node-version : 20.15.1
4447 - name : Setup CLI
45- uses : raycast/github-actions/setup-cli@v1.16 .0
48+ uses : raycast/github-actions/setup-cli@v1.17 .0
4649 with :
4750 version : ${{ inputs.cli_version || '1.91.1' }}
48- npm_token : ${{ inputs.npm_token }}
51+ raycast_api_alpha_npm_token : ${{ inputs.raycast_api_alpha_npm_token }}
4952 - name : Get command
5053 id : get_command
51- uses : raycast/github-actions/get-command@v1.16 .0
54+ uses : raycast/github-actions/get-command@v1.17 .0
5255 with :
5356 custom_command : ${{ inputs.command }}
5457 github_event_name : ${{ github.event_name }}
5558 - name : Get changed extensions
5659 id : get_changed_extensions
57- uses : raycast/github-actions/get-changed-extensions@v1.16 .0
60+ uses : raycast/github-actions/get-changed-extensions@v1.17 .0
5861 with :
5962 custom_paths : ${{ inputs.paths }}
6063 github_event_name : ${{ github.event_name }}
6164 - name : Ray CLI
6265 id : ray_cli
63- uses : raycast/github-actions/ray-cli@v1.16 .0
66+ uses : raycast/github-actions/ray-cli@v1.17 .0
6467 with :
6568 paths : ${{ steps.get_changed_extensions.outputs.paths }}
6669 command : ${{ steps.get_command.outputs.command }}
6770 access_token : ${{ inputs.access_token }}
68- npm_token : ${{ inputs.npm_token }}
6971 extension_schema : ${{ inputs.extension_schema }}
7072 allow_owners_only_for_extensions : ${{ inputs.allow_owners_only_for_extensions }}
73+ npmrc_path : ${{ inputs.npmrc_path }}
74+ raycast_api_alpha_npm_token : ${{ inputs.raycast_api_alpha_npm_token }}
0 commit comments