2019-03-12 23:53:32 +03:00
|
|
|
# Release Utils
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
`npm install @tryghost/release-utils --save`
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
`yarn add @tryghost/release-utils`
|
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Create Gist:
|
|
|
|
|
|
|
|
```
|
|
|
|
const releaseUtils = require('@tryghost/release-utils');
|
|
|
|
|
|
|
|
|
|
|
|
releaseUtils
|
|
|
|
.gist
|
|
|
|
.create({
|
|
|
|
userAgent: String,
|
|
|
|
gistName: String,
|
|
|
|
gistDescription: String,
|
|
|
|
changelogPath: String [Path on Disk]
|
|
|
|
github: {
|
|
|
|
username: String
|
|
|
|
token: String
|
|
|
|
},
|
|
|
|
isPublic: Boolean [optional, Default: true]
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
Create Changelog:
|
|
|
|
|
|
|
|
```
|
|
|
|
const releaseUtils = require('@tryghost/release-utils');
|
|
|
|
|
|
|
|
|
|
|
|
const changelog = new releaseUtils.Changelog({
|
|
|
|
changelogPath: String [Path on Disk],
|
|
|
|
folder: String [Path on Disk]
|
|
|
|
});
|
|
|
|
|
|
|
|
changelog
|
|
|
|
.write({
|
|
|
|
githubRepoPath: String,
|
|
|
|
lastVersion: String
|
|
|
|
})
|
|
|
|
.write({
|
|
|
|
githubRepoPath: String
|
|
|
|
lastVersion: String
|
|
|
|
append: Boolean [optional, Default: false],
|
|
|
|
folder: String [optional, Path on Disk]
|
|
|
|
})
|
|
|
|
.sort()
|
|
|
|
.clean()
|
|
|
|
```
|
|
|
|
|
|
|
|
Create & Upload Release:
|
|
|
|
|
|
|
|
```
|
|
|
|
const releaseUtils = require('@tryghost/release-utils');
|
|
|
|
|
|
|
|
|
|
|
|
releaseUtils
|
|
|
|
.releases
|
|
|
|
.create({
|
|
|
|
tagName: String,
|
|
|
|
releaseName: String,
|
|
|
|
userAgent: String,
|
|
|
|
uri: String,
|
|
|
|
github: {
|
|
|
|
username: String,
|
|
|
|
token: String,
|
|
|
|
},
|
2019-03-17 22:13:40 +03:00
|
|
|
changelogPath: String [Path on Disk] OR Array[{
|
|
|
|
changelogPath: String [Path on Disk],
|
|
|
|
content: Array [optional]
|
|
|
|
}],
|
2019-03-12 23:53:32 +03:00
|
|
|
gistUrl: String [optional],
|
|
|
|
preRelease: Boolean [optional, Default: false],
|
|
|
|
draft: Boolean [optional, Default: true],
|
2019-03-14 19:12:08 +03:00
|
|
|
filterEmojiCommits: Boolean [optional, Default: true],
|
|
|
|
content: Array [optional]
|
2019-03-12 23:53:32 +03:00
|
|
|
});
|
2019-03-17 22:13:40 +03:00
|
|
|
|
2019-03-12 23:53:32 +03:00
|
|
|
releaseUtils
|
|
|
|
.releases
|
|
|
|
.uploadZip({
|
|
|
|
github: {
|
|
|
|
username: String,
|
|
|
|
token: String
|
|
|
|
},
|
|
|
|
zipPath: String [Path on Disk],
|
|
|
|
uri: String,
|
|
|
|
userAgent: String
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Develop
|
|
|
|
|
|
|
|
This is a mono repository, managed with [lerna](https://lernajs.io/).
|
|
|
|
|
|
|
|
Follow the instructions for the top-level repo.
|
|
|
|
1. `git clone` this repo & `cd` into it as usual
|
|
|
|
2. Run `yarn` to install top-level dependencies.
|
|
|
|
|
|
|
|
|
|
|
|
## Run
|
|
|
|
|
|
|
|
- `yarn dev`
|
|
|
|
|
|
|
|
|
|
|
|
## Test
|
|
|
|
|
|
|
|
- `yarn lint` run just eslint
|
|
|
|
- `yarn test` run lint and tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Copyright & License
|
|
|
|
|
2022-01-06 12:52:35 +03:00
|
|
|
Copyright (c) 2013-2022 Ghost Foundation - Released under the [MIT license](LICENSE).
|