Skip to content

Commit e96a206

Browse files
committed
Pass GH token to download bundle script
1 parent d550ca7 commit e96a206

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

download-bundle/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ inputs:
99
description: "A comma-separated list of platforms to download the bundle for, options are: osx64, linux64, win64"
1010
required: true
1111
default: ""
12+
token:
13+
description: "A GitHub token to use for downloading the bundle"
14+
required: true
15+
default: ${{ github.token }}
1216
outputs:
1317
bundle-path:
1418
description: Path to the downloaded bundle
@@ -22,4 +26,5 @@ runs:
2226
env:
2327
TAG: ${{ inputs.tag }}
2428
PLATFORMS: ${{ inputs.platforms }}
25-
RUNNER_TEMP: ${{ runner.temp }}
29+
RUNNER_TEMP: ${{ runner.temp }}
30+
GH_TOKEN: ${{ inputs.token }}

0 commit comments

Comments
 (0)