Skip to content

Commit 2d2b3b2

Browse files
committed
fix: Use job context for unique artifact names
- Use github.job and strategy.job-index for uniqueness - Ensures multiple invocations in same workflow don't conflict
1 parent cc6948a commit 2d2b3b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ runs:
338338
uses: actions/upload-artifact@v4
339339
if: always()
340340
with:
341-
name: mautic-deployment-log-${{ inputs.vps-name }}-${{ github.run_number }}
341+
name: mautic-deployment-log-${{ github.run_id }}-${{ github.job }}-${{ strategy.job-index }}
342342
path: ./setup-dc.log
343343

344344
- name: Cleanup

0 commit comments

Comments
 (0)