Skip to content

Commit fb1ef06

Browse files
committed
Fix encoding in pipelines
1 parent 23f7c9f commit fb1ef06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/artifacts-zip.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
- run: npm run process-styles
4646
- run: rm -rf node_modules
4747
- run: npm install --production
48-
- run: jq 'del(.background)' manifest.json > manifest.json
49-
- run: jq -s 'reduce .[] as $item ({}; . * $item)' manifest.json part.firefox.json > manifest.json
48+
- run: echo $(jq 'del(.background)' manifest.json) > manifest.json
49+
- run: echo $(jq -s 'reduce .[] as $item ({}; . * $item)' manifest.json part.firefox.json) > manifest.json
5050
- run: rm -rf assets && rm -rf .github && rm -rf .git && rm .gitignore package-lock.json package.json part.edge.json part.firefox.json CHANGELOG.md styles/main.css styles/main.css.map styles/main.scss
5151
- run: zip -qq -r tldr-pages-firefox.zip .
5252

@@ -69,7 +69,7 @@ jobs:
6969
- run: npm run process-styles
7070
- run: rm -rf node_modules
7171
- run: npm install --production
72-
- run: jq -s 'reduce .[] as $item ({}; . * $item)' manifest.json part.edge.json > manifest.json
72+
- run: echo $(jq -s 'reduce .[] as $item ({}; . * $item)' manifest.json part.edge.json) > manifest.json
7373
- run: rm -rf assets && rm -rf .github && rm -rf .git && rm .gitignore package-lock.json package.json part.edge.json part.firefox.json CHANGELOG.md styles/main.css styles/main.css.map styles/main.scss
7474
- run: zip -qq -r tldr-pages-edge.zip .
7575

0 commit comments

Comments
 (0)