Skip to content

Commit

Permalink
perf(bundle): do not bundle source map to save storage
Browse files Browse the repository at this point in the history
  • Loading branch information
leomelki committed Aug 26, 2024
1 parent b4785eb commit 3d10c63
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,6 @@ jobs:
- name: Save git hash to version.txt
run: node get_git_hash.js > build/version.txt

- name: Zip the build directory
run: |
cd build
zip -r app.zip .
cd ../
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
Expand All @@ -75,6 +69,13 @@ jobs:
name: build
path: build

- name: Zip the build directory
run: |
cd build
find . -name "*.map" -type f -delete
zip -r app.zip .
cd ../
- name: Set up AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
Expand Down

0 comments on commit 3d10c63

Please sign in to comment.