Skip to content

Commit

Permalink
Modify release-stable (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
halocline authored Jul 22, 2024
1 parent 1e3dc38 commit 1ab90ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grommet-leaflet/tools/release-stable.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ if (process.env.CI) {
git()
.clone(repoURL, localFolder)
.then(() => git(localFolder).checkout(BRANCH))
// .then(() => del([`${localFolder}/**/*`]))
.then(() => fs.copy(localDist, localFolder))
.then(() => deleteAsync([`${localFolder}/**/*`]))
.then(() => fs.copy(localDist, `${localFolder}/dist`))
.then(() => git(localFolder).add(['--all', '.']))
.then(() => git(localFolder).commit(`${BRANCH} updated`))
.then(() => git(localFolder).push('origin', BRANCH))
Expand Down

0 comments on commit 1ab90ad

Please sign in to comment.