Skip to content

Commit

Permalink
CI/CD: Ensure uniquely named artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarEmaraDev committed Jan 25, 2025
1 parent 182872b commit 5536752
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Upload Builds
uses: actions/upload-artifact@v4
with:
name: Builds
name: build-${{ strategy.job-index }}
path: animation_nodes*.zip
deploy:
name: Deploy
Expand All @@ -46,7 +46,8 @@ jobs:
- name: Download Builds
uses: actions/download-artifact@v4
with:
name: Builds
pattern: build-*
merge-multiple: true
- name: Extract Branch Name
id: extract_branch_name
run: echo ::set-output name=branch::${GITHUB_REF#refs/heads/}
Expand Down

0 comments on commit 5536752

Please sign in to comment.