We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4bbe1c commit a787b86Copy full SHA for a787b86
.github/actions/build/app/action.yml
@@ -112,7 +112,9 @@ runs:
112
113
- name: Prepare MS Edge
114
if: ${{ inputs.BROWSER_TARGET == 'chromium' }}
115
- run: 'sed -i "s/\"key\": \"[^\"]*\",//" manifest.json'
+ run: |
116
+ jq 'del(.key)' manifest.json | jq -c . > manifest.tmp.json
117
+ mv manifest.tmp.json manifest.json
118
shell: bash
119
working-directory: ${{ inputs.DIR }}/dist
120
0 commit comments