Skip to content

Commit

Permalink
fix: install dependencies before release
Browse files Browse the repository at this point in the history
  • Loading branch information
luthfimasruri committed Mar 28, 2021
1 parent ce33da0 commit b576f8d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release-vue-quill.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Install deps
run: npm ci
- name: Release package
run: npm run release -- vue-quill
env:
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-quill/src/assets/snow.styl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ backgroundColor = #fff
inactiveColor = #4B5563
shadowColor = #D1D5DB
textColor = #4B5563
// Additional colors
// Additional color
backgroundHoverColor = #F3F4F6
backgroundActiveColor = #DBEAFE

Expand Down
2 changes: 0 additions & 2 deletions scripts/semantic-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ if (process.env.CI && targets[0]) {
const semanticReleaseConfig = path.resolve(pkgDir, 'semantic-release.json')
execa.sync('cd', [pkgDir])
execa.sync('npm', ['ci'])
execa.sync('cd', [rootDir])
execa.sync('npm', ['ci'])
execa.sync('zip', [`${target}vue-quill-dist.zip`, '-r', distDir])
execa.sync('npx', ['semantic-release', '--extends', semanticReleaseConfig])
} else {
Expand Down

0 comments on commit b576f8d

Please sign in to comment.