Skip to content

Commit 3f4a28d

Browse files
fix: artifact upload conflict when cleanup runs multiple times (#4)
1 parent c0ba0c6 commit 3f4a28d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test-actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Start Autonomi Network
2020
id: start-network
21-
uses: grumbach/github_actions/spawn-autonomi-network@v1
21+
uses: maidsafe/github_actions/spawn-autonomi-network@v1
2222
with:
2323
autonomi-version: 'stable-2025.7.1.3'
2424
node-count: '25'
@@ -112,7 +112,7 @@ jobs:
112112
113113
- name: Cleanup Autonomi Network
114114
if: always()
115-
uses: grumbach/github_actions/cleanup-autonomi-network@v1
115+
uses: maidsafe/github_actions/cleanup-autonomi-network@v1
116116
with:
117117
upload-logs: 'true'
118118
keep-directories: 'false'

cleanup-autonomi-network/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ runs:
187187
if: inputs.upload-logs == 'true'
188188
uses: actions/upload-artifact@v4
189189
with:
190-
name: autonomi-network-logs-${{ github.run_id }}
190+
name: autonomi-network-logs-${{ github.run_id }}-${{ github.job }}-${{ github.run_attempt }}
191191
path: network-logs/
192192
retention-days: 7
193193

0 commit comments

Comments
 (0)