File tree Expand file tree Collapse file tree 2 files changed +21
-38
lines changed
Expand file tree Collapse file tree 2 files changed +21
-38
lines changed Original file line number Diff line number Diff line change 3939 if : startsWith(runner.os, 'mac')
4040 with :
4141 xcode-version : ' 15.2.0'
42- # This is gonna be hacky.
43- # Github made us upgrade xcode, which would force an upgrade of electron-builder to fix mac.
44- # But there were bugs with copyfiles / extraFiles that kept seeing duplicates erroring on ln.
45- # A flag USE_HARD_LINKS=false in electron-builder.json was suggested in comments, but that broke windows builds.
46- # So for now we'll install python2 on mac and make sure it can find it.
47- # Remove this after successfully upgrading electron-builder.
48- # HACK part 1
49- - uses : Homebrew/actions/setup-homebrew@master
50- if : startsWith(runner.os, 'mac')
51- # HACK part 2
52- - name : Install Python2
53- if : startsWith(runner.os, 'mac')
54- run : |
55- brew install pyenv
56- pyenv install 2.7
57- pyenv global 2.7
58- export PYTHON_PATH=$(pyenv which python2.7)
5942 - name : Download blockchain headers
6043 run : |
6144 mkdir -p ./static/daemon
Original file line number Diff line number Diff line change 1414 "to" : " ./"
1515 }
1616 ],
17- "extraResources" : [
18- {
19- "from" : " ./static/daemon/" ,
20- "to" : " static/daemon/" ,
21- "filter" : [" **/*" ]
22- },
23- {
24- "from" : " ./static/img" ,
25- "to" : " static/img" ,
26- "filter" : [" **/*" ]
27- },
28- {
29- "from" : " ./static/font" ,
30- "to" : " static/font" ,
31- "filter" : [" **/*" ]
32- },
33- {
34- "from" : " ./static/app-update.yml" ,
35- "to" : " app-update.yml"
36- }
37- ],
17+ // "extraResources": [
18+ // {
19+ // "from": "./static/daemon/",
20+ // "to": "static/daemon/",
21+ // "filter": ["**/*"]
22+ // },
23+ // {
24+ // "from": "./static/img",
25+ // "to": "static/img",
26+ // "filter": ["**/*"]
27+ // },
28+ // {
29+ // "from": "./static/font",
30+ // "to": "static/font",
31+ // "filter": ["**/*"]
32+ // },
33+ // {
34+ // "from": "./static/app-update.yml",
35+ // "to": "app-update.yml"
36+ // }
37+ // ],
3838 "publish" : [
3939 {
4040 "provider" : " github"
You can’t perform that action at this time.
0 commit comments