Skip to content

Commit a787b86

Browse files
chore: remove key from manifest for Edge Web Store publish (#1940)
1 parent a4bbe1c commit a787b86

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/build/app/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,9 @@ runs:
112112

113113
- name: Prepare MS Edge
114114
if: ${{ inputs.BROWSER_TARGET == 'chromium' }}
115-
run: 'sed -i "s/\"key\": \"[^\"]*\",//" manifest.json'
115+
run: |
116+
jq 'del(.key)' manifest.json | jq -c . > manifest.tmp.json
117+
mv manifest.tmp.json manifest.json
116118
shell: bash
117119
working-directory: ${{ inputs.DIR }}/dist
118120

0 commit comments

Comments
 (0)