Skip to content

Commit 768b4a2

Browse files
committed
Disable copying files
1 parent 972af4a commit 768b4a2

File tree

2 files changed

+21
-38
lines changed

2 files changed

+21
-38
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,6 @@ jobs:
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

electron-builder.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@
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"

0 commit comments

Comments
 (0)