Skip to content

Commit ef8b3fa

Browse files
committed
fix
1 parent 6a64de2 commit ef8b3fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Update version in manifest file
3939
run: |
40-
sed -i "s|version=0.0.1|version=${{ steps.read_version.outputs.version }}|" app/manifest
40+
sed -i '' "s|version=0.0.1|version=${{ steps.read_version.outputs.version }}|" app/manifest
4141
4242
- name: Get changelog
4343
id: read_log
@@ -47,14 +47,14 @@ jobs:
4747
4848
- name: Update changelog in manifest file
4949
run: |
50-
sed -i "s|changelog=changelog|changelog=${{ steps.read_log.outputs.changelog }}|" app/manifest
50+
sed -i '' "s|changelog=changelog|changelog=${{ steps.read_log.outputs.changelog }}|" app/manifest
5151
5252
- name: Build x86 backend
5353
run: npm run build:backend
5454

5555
- name: Update x86 platform in manifest file
5656
run: |
57-
sed -i "s|platform=platform|platform=x86|" app/manifest
57+
sed -i '' "s|platform=platform|platform=x86|" app/manifest
5858
5959
- name: Build x86 package
6060
run: |
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Update arm platform in manifest file
7171
run: |
72-
sed -i "s|platform=x86|platform=arm|" app/manifest
72+
sed -i '' "s|platform=x86|platform=arm|" app/manifest
7373
7474
- name: Build arm package
7575
run: |

0 commit comments

Comments
 (0)