We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a75c7eb commit e76a3b1Copy full SHA for e76a3b1
1 file changed
.github/workflows/build.yml
@@ -88,7 +88,11 @@ jobs:
88
run: npm i
89
90
- name: Build
91
- run: cargo tauri build --target x86_64-pc-windows-msvc
+ uses: nick-fields/retry@v3
92
+ with:
93
+ timeout_minutes: 30
94
+ max_attempts: 3
95
+ command: cargo tauri build --target x86_64-pc-windows-msvc
96
97
- name: Upload artifact
98
uses: actions/upload-artifact@v4
@@ -114,7 +118,11 @@ jobs:
114
118
115
119
116
120
117
- run: rustup target add i686-pc-windows-msvc && cargo tauri build --target i686-pc-windows-msvc
121
122
123
124
125
+ command: rustup target add i686-pc-windows-msvc && cargo tauri build --target i686-pc-windows-msvc
126
127
128
0 commit comments