Skip to content

Commit

Permalink
chore(ci): Configure tarballDir for post-mortem debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
zenflow committed Mar 5, 2018
1 parent a52214b commit 1b59552
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/* eslint-disable no-template-curly-in-string */
/* eslint-env node */

const tarballDir = require('path').join(__dirname, 'tarball')

module.exports = {
debug: true,
prepare: [
Expand All @@ -11,5 +13,11 @@ module.exports = {
message: 'chore(release): ${nextRelease.version} [skip ci]',
},
],
publish: ['@semantic-release/npm', '@semantic-release/github'],
publish: [
{
path: '@semantic-release/npm',
tarballDir,
},
'@semantic-release/github',
],
}

0 comments on commit 1b59552

Please sign in to comment.