Skip to content

Commit

Permalink
Revert "flatten attempt 2"
Browse files Browse the repository at this point in the history
This reverts commit 6ff2435.
  • Loading branch information
joshuarli committed Sep 18, 2024
1 parent 6ff2435 commit 21f2404
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,18 +250,20 @@ jobs:
run: chmod +x npm-binary-distributions/*/bin/sentry-cli
- name: Package distribution packages
run: |
mkdir flattened
for dir in npm-binary-distributions/*; do
cd $dir
npm pack
mv *.tgz ../../flattened
cd -
done
- name: Upload packaged npm binary distributions
uses: actions/upload-artifact@v4
with:
name: artifact-npm-binary-distributions
path: flattened/*.tgz
path: |
npm-binary-distributions/darwin/*.tgz
npm-binary-distributions/linux-*/*.tgz
npm-binary-distributions/win*/*.tgz
if-no-files-found: 'error'

merge:
Expand Down

0 comments on commit 21f2404

Please sign in to comment.