Skip to content

Commit 2891f57

Browse files
committed
Artifact name per platform, overwrite previous artifact
This implies that our nightly artifacts get overwritten per platform. To avoid this, give unique names and remove `overwrite: true` For compatibility with actions@v4
1 parent 30d71d8 commit 2891f57

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/nightly-experiment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,6 @@ jobs:
3535
- name: Upload Build Artifact
3636
uses: actions/upload-artifact@v4
3737
with:
38-
name: nightly-experiment
38+
name: ${{ matrix.platform }}-nightly
3939
path: firmware-${{ matrix.platform }}-nightly-experiment.zip
40+
overwrite: true

.github/workflows/nightly.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,6 @@ jobs:
3535
- name: Upload Build Artifact
3636
uses: actions/upload-artifact@v4
3737
with:
38-
name: nightly
38+
name: ${{ matrix.platform }}-nightly
3939
path: firmware-${{ matrix.platform }}-nightly.zip
40+
overwrite: true

0 commit comments

Comments
 (0)