Skip to content

Commit

Permalink
fix: publish dist files to GitHub Releases
Browse files Browse the repository at this point in the history
  • Loading branch information
limonte committed Apr 16, 2021
1 parent e14ff1c commit b205739
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion release.config.js
Expand Up @@ -17,7 +17,16 @@ module.exports = {
],
publish: [
'@semantic-release/npm',
'@semantic-release/github',
['@semantic-release/github', {
'assets': [
{ 'path': 'dist/sweetalert2.all.js' },
{ 'path': 'dist/sweetalert2.all.min.js' },
{ 'path': 'dist/sweetalert2.css' },
{ 'path': 'dist/sweetalert2.js' },
{ 'path': 'dist/sweetalert2.min.css' },
{ 'path': 'dist/sweetalert2.min.js' },
]
}],
],
success: [
'@semantic-release/github',
Expand Down

0 comments on commit b205739

Please sign in to comment.