11
11
steps :
12
12
- name : Checkout Repository
13
13
uses : actions/checkout@v4
14
+ with :
15
+ persist-credentials : false
14
16
- name : Install Go
15
17
uses : actions/setup-go@v5
16
18
with :
@@ -33,21 +35,23 @@ jobs:
33
35
fail-fast : false
34
36
matrix :
35
37
# maybe update to macOS 14 if this is ARM64-ready?
36
- platform : [macos-13, ubuntu-20.04, windows-2022 ]
38
+ platform : [macos-13, ubuntu-20.04, windows-2025 ]
37
39
38
40
runs-on : ${{ matrix.platform }}
39
41
steps :
40
42
- name : Run sccache-cache
41
43
uses :
mozilla-actions/[email protected]
42
44
- name : Checkout Repository
43
45
uses : actions/checkout@v4
46
+ with :
47
+ persist-credentials : false
44
48
- name : Download Verifier
45
49
uses : actions/download-artifact@v4
46
50
with :
47
51
name : verifier-builds
48
52
path : verifier/dist/
49
53
- name : Apply +x to verifier
50
- if : matrix.platform != 'windows-2022 '
54
+ if : matrix.platform != 'windows-2025 '
51
55
run : chmod +x verifier/dist/*
52
56
- name : Setup pnpm
53
57
uses : pnpm/action-setup@v3
93
97
path : src-tauri/target/release/bundle/dmg/*.dmg
94
98
- name : Upload the Windows packages
95
99
uses : actions/upload-artifact@v4
96
- if : matrix.platform == 'windows-2022 '
100
+ if : matrix.platform == 'windows-2025 '
97
101
with :
98
102
name : windows-packages
99
103
path : src-tauri/target/release/*.exe
@@ -123,7 +127,7 @@ jobs:
123
127
path : src-tauri/target/debug/bundle/dmg/*.dmg
124
128
- name : Upload the Windows packages
125
129
uses : actions/upload-artifact@v4
126
- if : matrix.platform == 'windows-2022 '
130
+ if : matrix.platform == 'windows-2025 '
127
131
with :
128
132
name : windows-packages-debug
129
133
path : src-tauri/target/debug/*.exe
0 commit comments