Skip to content

Commit 1075589

Browse files
committed
When uploading artifacts, use the sha as suffix to make artifacts unique and easy to detect
1 parent 3d07d56 commit 1075589

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/examples.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
mkdir -p "master_binaries/esp32-build"
3737
scripts/helpers/bloat_check.py \
38-
--job "ESP32 Examples" \
38+
--job "${{ env.BUILD_TYPE }} Examples" \
3939
--artifact-download-dir "master_binaries/$BUILD_TYPE-build" \
4040
--build-output-dir "example_binaries/$BUILD_TYPE-build" \
4141
--report-file bloat_report.txt \
@@ -54,7 +54,7 @@ jobs:
5454
- name: Uploading Binaries
5555
uses: actions/upload-artifact@v1
5656
with:
57-
name: ${{ env.BUILD_TYPE }}-example-build
57+
name: ${{ env.BUILD_TYPE }}-example-build-${{ github.sha }}
5858
path: /tmp/output_binaries/${{ env.BUILD_TYPE }}-build
5959

6060
nrf:

0 commit comments

Comments
 (0)