Skip to content

Commit 6ea5991

Browse files
committed
ci: upload artifacts for every platform
1 parent be5396e commit 6ea5991

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/ci.generate.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -776,13 +776,10 @@ const ci = {
776776
},
777777
},
778778
{
779-
name: "Upload PR artifact (linux)",
779+
name: "Upload PR artifact",
780780
if: [
781781
"matrix.job == 'test' &&",
782-
"matrix.profile == 'release' && (matrix.use_sysroot ||",
783-
"(github.repository == 'denoland/deno' &&",
784-
"(github.ref == 'refs/heads/main' ||",
785-
"startsWith(github.ref, 'refs/tags/'))))",
782+
"matrix.profile == 'release'",
786783
].join("\n"),
787784
uses: "actions/upload-artifact@v4",
788785
with: {

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -451,13 +451,10 @@ jobs:
451451
du -h target/release/deno
452452
env:
453453
NO_COLOR: 1
454-
- name: Upload PR artifact (linux)
454+
- name: Upload PR artifact
455455
if: |-
456456
!(matrix.skip) && (matrix.job == 'test' &&
457-
matrix.profile == 'release' && (matrix.use_sysroot ||
458-
(github.repository == 'denoland/deno' &&
459-
(github.ref == 'refs/heads/main' ||
460-
startsWith(github.ref, 'refs/tags/')))))
457+
matrix.profile == 'release')
461458
uses: actions/upload-artifact@v4
462459
with:
463460
name: 'deno-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}'

0 commit comments

Comments
 (0)