Skip to content
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.

Commit

Permalink
Adding Semantic-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
StanleyGoldman committed Sep 8, 2019
1 parent 35b01e0 commit 2ca31ac
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 169 deletions.
58 changes: 0 additions & 58 deletions .chglog/CHANGELOG.tpl.md

This file was deleted.

30 changes: 0 additions & 30 deletions .chglog/config.yml

This file was deleted.

1 change: 1 addition & 0 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
next-version: 1.0.0
branches: {}
ignore:
sha: []
7 changes: 2 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ install:
- choco install dotnetcore-sdk --version 3.0.100-preview9-014004 --pre
- choco install codecov --no-progress --confirm
- choco install gitversion.portable --no-progress --confirm
- npm install -g semantic-release @semantic-release/changelog @semantic-release/git
cache:
- '%LOCALAPPDATA%\Temp\Chocolatey -> appveyor.yml'
- '.fake -> Build.fsx'
Expand All @@ -17,8 +18,4 @@ build_script:
- ps: >-
fake build --parallel 4
test: off
deploy:
- provider: Environment
name: GitHub
on:
APPVEYOR_REPO_TAG: true
deploy_script: semantic-release
76 changes: 0 additions & 76 deletions chagelog.md

This file was deleted.

61 changes: 61 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"name": "sonofpicasso",
"version": "0.1.0",
"description": "SonOfPicasso",
"main": "index.js",
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justaprogrammer/Son-of-Picasso.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/justaprogrammer/Son-of-Picasso/issues"
},
"homepage": "https://github.com/justaprogrammer/Son-of-Picasso",
"release": {
"branch": "master",
"plugins": [
[
"@semantic-release/commit-analyzer",
{}
],
[
"@semantic-release/release-notes-generator",
{}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/github",
{
"assets": "build/*.zip"
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
],
"message": "Bump to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}

0 comments on commit 2ca31ac

Please sign in to comment.