Skip to content

Commit

Permalink
CI/CD: Use same version for artifacts download and upload
Browse files Browse the repository at this point in the history
Different versions are no longer compatible.
  • Loading branch information
OmarEmaraDev committed Jan 25, 2025
1 parent fc23163 commit 182872b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Build
run: python setup.py build --export --exportheaders --noversioncheck
- name: Upload Builds
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Builds
path: animation_nodes*.zip
Expand All @@ -44,7 +44,7 @@ jobs:
if: github.event_name == 'push'
steps:
- name: Download Builds
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: Builds
- name: Extract Branch Name
Expand Down

0 comments on commit 182872b

Please sign in to comment.