Skip to content

Commit 13ac4d1

Browse files
committed
add github.run_number to uploaded artifacts
1 parent 3877ff0 commit 13ac4d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Upload APK
4949
uses: actions/upload-artifact@v4
5050
with:
51-
name: bitkit-e2e-apk
51+
name: bitkit-e2e-apk_${{ github.run_number }}
5252
path: app/build/outputs/apk/dev/debug/bitkit_e2e.apk
5353

5454
e2e-tests:
@@ -71,7 +71,7 @@ jobs:
7171
- name: Download APK
7272
uses: actions/download-artifact@v4
7373
with:
74-
name: bitkit-e2e-apk
74+
name: bitkit-e2e-apk_${{ github.run_number }}
7575
path: bitkit-e2e-tests/aut
7676

7777
- name: List APK directory contents
@@ -127,7 +127,7 @@ jobs:
127127
if: failure()
128128
uses: actions/upload-artifact@v4
129129
with:
130-
name: e2e-artifacts
130+
name: e2e-artifacts_${{ github.run_number }}
131131
path: bitkit-e2e-tests/artifacts/
132132

133133
- name: Dump docker logs on failure

0 commit comments

Comments
 (0)