We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
config-path
1 parent 1c6e674 commit f52718dCopy full SHA for f52718d
action.yaml
@@ -44,6 +44,13 @@ inputs:
44
required: false
45
default: 0
46
47
+ config-path:
48
+ description: |
49
+ The location of the chainctl config file to use. These values
50
+ override the default configuration values in the binary.
51
+ required: false
52
+ default: ''
53
+
54
runs:
55
using: "composite"
56
@@ -86,6 +93,7 @@ runs:
86
93
CHAINCTL_DEBUG: "true"
87
94
VERBOSITY: ${{ inputs.verbosity }}
88
95
IDENTITY: ${{ inputs.identity }}
96
+ CHAINCTL_CONFIG: ${{ inputs.config-path }}
89
97
run: |
90
98
if chainctl auth login --identity "${{ env.IDENTITY }}" -v=${{ env.VERBOSITY }}; then
91
99
echo Logged in as ${{ env.IDENTITY }}!
0 commit comments