-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CD - Push release to github releases on tags to master (#30)
* CD - Push release to github releases on tags to master * Explicitly create artifacts folder * Add a feature/circleci filter to test circle ci config changes * Ship to github releaes on tag push * Add documentation for maintainers, add CHANGLOG, update contribution docs
1 parent
e57cf64
commit 3cb3128
Showing
4 changed files
with
82 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Changelog | ||
|
||
## In Development | ||
|
||
## 1.0.0 | ||
|
||
Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Maintainers Documentation | ||
|
||
## Release checklist | ||
|
||
* Please make sure CHANGELOG reflects the new version to be released | ||
(Usually, that's changing the `In Development` items to be reflected under | ||
new version and leaving `In Development` empty) | ||
* Set the new version to be released in plugin.json and package.json | ||
* Please push a tag using git commands | ||
|
||
```bash | ||
git tag -a 0.1.0 -m "0.1.0 - Shiny new features and bug fixes" | ||
git push upstream 0.1.0 | ||
``` | ||
|
||
* Circle CI builds the tag and ships to github releases | ||
* Please ensure the released tar.gz contains the `dist` folder |