Skip to content

Commit

Permalink
Merge pull request #447 from Progi1984/fixZip
Browse files Browse the repository at this point in the history
Fixed ZIP Content in GA Build
  • Loading branch information
Hlavtox authored Jan 31, 2023
2 parents a8f0491 + 6a8ce19 commit ad06c93
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,35 @@ jobs:
- name: Build assets
run: npm run build

- name: Remove dependencies
run: rm node_modules/ .github/ .git/ -rf
- name: Remove unuseful data
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
with:
name: ${{ github.event.repository.name }}
path: ../
path: ./
update_release_draft:
runs-on: ubuntu-latest
needs: [deploy]
Expand Down

0 comments on commit ad06c93

Please sign in to comment.