Skip to content

Commit cb7869f

Browse files
committed
fix zizmur
1 parent 765ad2d commit cb7869f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

package-plugin/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,16 @@ runs:
105105

106106
- name: Sign plugin
107107
run: |
108-
if [ -n "${{ inputs.sign_root_urls }}" ]; then
108+
if [ -n "$SIGN_ROOT_URLS" ]; then
109109
echo "Signing private plugin including rootUrls"
110-
${{ github.action_path }}/pm.sh sign -- --rootUrls "${{ inputs.sign_root_urls }}"
110+
${{ github.action_path }}/pm.sh sign -- --rootUrls "$SIGN_ROOT_URLS"
111111
else
112112
echo "Signing public plugin"
113113
${{ github.action_path }}/pm.sh sign
114114
fi
115115
shell: bash
116116
env:
117+
SIGN_ROOT_URLS: ${{ inputs.sign_root_urls }}
117118
GRAFANA_ACCESS_POLICY_TOKEN: ${{ inputs.policy_token }}
118119
GRAFANA_API_KEY: ${{ inputs.grafana_token }}
119120
if: ${{ inputs.policy_token != '' }}

0 commit comments

Comments
 (0)