Skip to content

Commit

Permalink
ci: Exclude node_modules from deployment zip
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimAziev committed Aug 17, 2024
1 parent b1545f3 commit cfeafef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Zip the source code for submission
run: |
SOURCE_ZIP_NAME="source-code-${{ steps.update-version.outputs.NEW_VERSION }}.zip"
zip -r "${SOURCE_ZIP_NAME}" . -x ".git/*" -x ".github/*"
zip -r "${SOURCE_ZIP_NAME}" . -x ".git/*" -x ".github/*" -x "node_modules/*"
echo "SOURCE_ZIPPED_FILE=${SOURCE_ZIP_NAME}" >> $GITHUB_ENV
- name: Upload Chrome zipped app as artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit cfeafef

Please sign in to comment.