File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 36
36
37
37
with :
38
38
url : https://aws.oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=org.opensearch.plugin&a=opensearch-security&v=3.0.0.0-SNAPSHOT&p=zip
39
- target : plugin-artifacts/
40
39
filename : security.zip
41
40
42
41
- uses : ./ # Use the action
Original file line number Diff line number Diff line change 92
92
93
93
# Setup security if it's enabled
94
94
- name : Setup security demo configuration
95
- if : ${{ runner.os == 'Linux' && inputs.security-enabled }}
95
+ if : ${{ runner.os == 'Linux' && inputs.security-enabled == 'true' }}
96
96
run : |
97
97
echo "running linux security demo configuration setup"
98
98
export OPENSEARCH_INITIAL_ADMIN_PASSWORD=${{ inputs.admin-password }}
@@ -101,7 +101,7 @@ runs:
101
101
shell : bash
102
102
103
103
- name : Setup security demo configuration for Windows
104
- if : ${{ runner.os == 'Windows' && inputs.security-enabled }}
104
+ if : ${{ runner.os == 'Windows' && inputs.security-enabled == 'true' }}
105
105
run : |
106
106
echo "running windows security demo configuration setup"
107
107
export OPENSEARCH_INITIAL_ADMIN_PASSWORD=${{ inputs.admin-password }}
You can’t perform that action at this time.
0 commit comments