Skip to content

Commit

Permalink
ci: fix source code zipping in deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimAziev committed Aug 17, 2024
1 parent 17e177c commit b1545f3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/deploy-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,8 @@ jobs:
cd ..
- name: Zip the source code for submission
run: |
cd ..
SOURCE_ZIP_NAME="source-code-${{ steps.update-version.outputs.NEW_VERSION }}.zip"
zip -r "${SOURCE_ZIP_NAME}" \
webpack.config.js tsconfig.json README.md .nvmrc LICENSE CHANGELOG.md .prettierrc.js .gitignore \
chrome docs firefox package.json package-lock.json jest.environment.ts jest.config.ts src __tests__ images icons chrome-emacs.gif
zip -r "${SOURCE_ZIP_NAME}" . -x ".git/*" -x ".github/*"
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 b1545f3

Please sign in to comment.