Skip to content

Commit 366065f

Browse files
committed
Workflow: fix manifest update
1 parent bb46de3 commit 366065f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-test-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
- name: Set development icon
3939
if: steps.semvers.outputs.v_patch == steps.get_current_tag.outputs.tag
4040
run: |
41-
jq --argjson icons "{\"16\": \"icons/dev/16x16.png\",\"48\": \"icons/dev/48x48.png\",\"128\": \"icons/dev/128x128.png\"}" '.icons = $icons | .browser_action.default_icon = $icons' manifest.json > manifest.tmp
42-
mv manifest.tmp manifest.json
41+
jq --argjson icons "{\"16\": \"icons/dev/16x16.png\",\"48\": \"icons/dev/48x48.png\",\"128\": \"icons/dev/128x128.png\"}" '.icons = $icons | .browser_action.default_icon = $icons' ./src/manifest.json > ./src/manifest.tmp
42+
mv ./src/manifest.tmp ./src/manifest.json
4343
- run: |
4444
npm ci
4545
npm run lint

0 commit comments

Comments
 (0)