We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 765ad2d commit cb7869fCopy full SHA for cb7869f
1 file changed
package-plugin/action.yml
@@ -105,15 +105,16 @@ runs:
105
106
- name: Sign plugin
107
run: |
108
- if [ -n "${{ inputs.sign_root_urls }}" ]; then
+ if [ -n "$SIGN_ROOT_URLS" ]; then
109
echo "Signing private plugin including rootUrls"
110
- ${{ github.action_path }}/pm.sh sign -- --rootUrls "${{ inputs.sign_root_urls }}"
+ ${{ github.action_path }}/pm.sh sign -- --rootUrls "$SIGN_ROOT_URLS"
111
else
112
echo "Signing public plugin"
113
${{ github.action_path }}/pm.sh sign
114
fi
115
shell: bash
116
env:
117
+ SIGN_ROOT_URLS: ${{ inputs.sign_root_urls }}
118
GRAFANA_ACCESS_POLICY_TOKEN: ${{ inputs.policy_token }}
119
GRAFANA_API_KEY: ${{ inputs.grafana_token }}
120
if: ${{ inputs.policy_token != '' }}
0 commit comments