Skip to content

Commit

Permalink
fix: change artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Oct 23, 2024
1 parent 80dd0fd commit a5171fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,9 @@ jobs:
ls -lR all-packages
cd all-packages
for dir in */; do
zip -r "${dir%/}.zip" "$dir"
cd "$dir"
zip -r "../${dir%/}.zip" *
cd ..
done
- name: Upload Zip Artifacts(all-packages)
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit a5171fd

Please sign in to comment.