Skip to content

Commit 032bb54

Browse files
committed
Platform unique names for nightly build artifacts.
Since v4 unique names for artifact uploads are required. Now overwriting artifacts each nightly(-experimental) run.
1 parent 9b74bab commit 032bb54

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-experiment
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)