Skip to content

Commit

Permalink
GA Build ZIP File : Remove unuseful files
Browse files Browse the repository at this point in the history
  • Loading branch information
Progi1984 committed Jan 31, 2023
1 parent 33f95dc commit 6a8ce19
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,28 @@ jobs:
run: npm run build

- name: Remove unuseful data
run: rm node_modules/ .github/ .git/ -rf
run: |
rm .git/ -rf
rm .github/ -rf
rm .storybook/ -rf
rm node_modules/ -rf
rm src/ -rf
rm stories/ -rf
rm types/ -rf
rm webpack/ -rf
rm .editorconfig
rm .eslintignore
rm .eslintrc.js
rm .gitignore
rm .stylelintignore
rm .stylelintrc
rm babel.config.js
rm jest.config.js
rm package-lock.json
rm package.json
rm postcss.config.js
rm tsconfig.json
rm webpack.config.js
- name: Create & Upload artifact
uses: actions/upload-artifact@v1
Expand Down

0 comments on commit 6a8ce19

Please sign in to comment.