Skip to content

Commit

Permalink
chore(ci): only rename selected files for zip release
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
KaelWD committed Jun 17, 2022
1 parent fdf1c33 commit f7141ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -127,7 +127,8 @@ jobs:
- run: echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- run: rm -rf release
- run: cp -r ./packages/vuetify/dist release
- run: for file in ./release/*.*; do mv "$file" "${file/release\/vuetify/release/vuetify-${RELEASE_TAG}}"; done
- run: rm ./release/_component-variables.sass
- run: for file in ./release/vuetify.*; do mv "$file" "${file/release\/vuetify/release/vuetify-${RELEASE_TAG}}"; done
- run: zip -jr "release/vuetify-${RELEASE_TAG}.zip" release/*
- name: NPM Release
run: bash scripts/deploy.sh
Expand Down

0 comments on commit f7141ee

Please sign in to comment.