forked from video-dev/hls.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/video-dev/hls.js
- Loading branch information
Showing
39 changed files
with
6,678 additions
and
5,425 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 |
---|---|---|
@@ -1,8 +1,14 @@ | ||
# Performing A Release | ||
Releases are performed automatically with travis. | ||
|
||
1. `git tag -a v<major>.<minor>.<patch>` _('v' required)_ | ||
2. `git push --tag` | ||
3. Wait for travis to create a new draft GitHub release with the build attached. At this point the new npm package should have been published. | ||
4. Add the release notes to the new draft GitHub release. | ||
5. Publish the GitHub release. | ||
1. `git tag -a v<major>.<minor>.<patch>` or `git tag -a v<major>.<minor>.<patch>-<prerelease>` _('v' required)_ where anything before the first `.` in `<prerelease>` will be become the [npm dist-tag](https://docs.npmjs.com/cli/dist-tag). | ||
1. `git push` | ||
1. `git push --tag` | ||
1. Wait for travis to create a new draft GitHub release with the build attached. At this point the new npm package should have been published. | ||
1. Add the release notes to the new draft GitHub release. | ||
1. Publish the GitHub release. | ||
|
||
## Examples | ||
- `git tag -a v1.2.3` will result in `1.2.3` being published with the `latest` npm tag. | ||
- `git tag -a v1.2.3-beta` will result in `1.2.3-beta` being published with the `beta` npm tag. | ||
- `git tag -a v1.2.3-beta.1` will result in `1.2.3-beta.1` being published with the `beta` npm tag. |
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
Oops, something went wrong.