replicate 2.0.0

Copies the currently running program into a temporary location
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
export default {
  tagFormat: '${version}',
  plugins: [
    '@semantic-release/commit-analyzer',
    ['@semantic-release/release-notes-generator', {
      preset: 'conventionalcommits',
    }],
    '@semantic-release/github',
    ['@semantic-release/exec', {
      publishCmd: './publish.sh ${nextRelease.version}',
    }],
  ],
}