We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e582c2 commit 30412deCopy full SHA for 30412de
action.yml
@@ -8,12 +8,16 @@ inputs:
8
description: "The version to install: Default: latest"
9
required: false
10
default: "latest"
11
+ token:
12
+ description: "The GitHub token to use for the installation"
13
+ required: false
14
+ default: ${{ secrets.GITHUB_TOKEN }}
15
runs:
16
using: "composite"
17
steps:
18
# Run the action
19
- name: Setup Flutter Version Management CLI
20
shell: bash
21
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
+ GITHUB_TOKEN: ${{ inputs.token }}
23
run: $GITHUB_ACTION_PATH/action.sh ${{ inputs.version }}
0 commit comments