We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 860d1b5 commit 9432b10Copy full SHA for 9432b10
.github/workflows/build.yml
@@ -37,7 +37,7 @@ jobs:
37
fail-fast: false
38
matrix:
39
os:
40
- - ubuntu-20.04
+ #- ubuntu-20.04
41
- ubuntu-22.04-arm
42
# include:
43
# - os: macos-13
@@ -69,8 +69,12 @@ jobs:
69
if: matrix.os == 'ubuntu-22.04-arm'
70
run: |
71
LINE=$(cat electron-builder.json | grep -n snap | cut -d ':' -f 1)
72
- sed "$((LINE-1)),$((LINE+2))d" electron-builder.json | sed 's/x64/arm64/g' > electron-builder.json.tmp
73
- mv electron-builder.json.tmp electron-builder.json
+ sed -i "$((LINE-1)),$((LINE+2))d" electron-builder.json
+
74
+ LINE=$(cat electron-builder.json | grep -n deb | cut -d ':' -f 1)
75
76
77
+ sed -i 's/x64/arm64/g' electron-builder.json
78
- name: install Linux dev tools
79
if: startsWith(matrix.os, 'ubuntu')
80
0 commit comments