Skip to content

Commit

Permalink
flatten attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuarli committed Sep 18, 2024
1 parent ba24bb1 commit 6ff2435
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,20 +250,18 @@ 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: |
npm-binary-distributions/darwin/*.tgz
npm-binary-distributions/linux-*/*.tgz
npm-binary-distributions/win*/*.tgz
path: flattened/*.tgz
if-no-files-found: 'error'

merge:
Expand Down

0 comments on commit 6ff2435

Please sign in to comment.