We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a7a534 commit 911d7a6Copy full SHA for 911d7a6
.github/workflows/release.yml
@@ -282,10 +282,21 @@ jobs:
282
283
- name: attach artifacts
284
uses: actions/upload-artifact@v4
285
+ if : matrix.os != 'windows-latest'
286
with:
- name: iroh-${{env.RELEASE_OS }}-${{env.RELEASE_ARCH}}-bundle
287
- path: iroh-*{.tar.gz,.zip}
+ name: iroh-${{ matrix.release-os }}-${{ matrix.release-arch }}-bundle
288
+ path: iroh-*.tar.gz
289
compression-level: 0
290
+ retention-days: 1
291
+
292
+ - name: attach artifacts
293
+ uses: actions/upload-artifact@v4
294
+ if : matrix.os == 'windows-latest'
295
+ with:
296
297
+ path: iroh-*.zip
298
+ compression-level: 0
299
300
301
docker:
302
needs: build_release
0 commit comments