File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 37
37
fail-fast : false
38
38
matrix :
39
39
os :
40
- - ubuntu-20.04
40
+ # - ubuntu-20.04
41
41
- ubuntu-22.04-arm
42
42
# include:
43
43
# - os: macos-13
69
69
if : matrix.os == 'ubuntu-22.04-arm'
70
70
run : |
71
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
72
+ sed -i "$((LINE-1)),$((LINE+2))d" electron-builder.json
73
+
74
+ LINE=$(cat electron-builder.json | grep -n deb | cut -d ':' -f 1)
75
+ sed -i "$((LINE-1)),$((LINE+2))d" electron-builder.json
76
+
77
+ sed -i 's/x64/arm64/g' electron-builder.json
74
78
- name : install Linux dev tools
75
79
if : startsWith(matrix.os, 'ubuntu')
76
80
run : |
You can’t perform that action at this time.
0 commit comments