Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mig4 committed Nov 4, 2019
1 parent 2cbbb90 commit ec15951
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,22 @@ $ git commit -a -m "Release v1"
$ git push origin releases/v1
```

Now to release a new minor/patch versions from that branch (replace `.x.y` as
appropriate):

``` bash
# update "version" property in `package.json`
$ npm install
$ npm run build && npm run format
$ npm prune --production
$ git add -A
$ git commit -v -m "Release v1.x.y"
$ git push
$ git tag -s v1.x.y
$ git tag -fs v1 -m "Update v1 tag"
$ git push --tags --force
```

The action is now published! :rocket:

See the [versioning documentation](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "setup-bats",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"description": "An action to setup BATS testing framework",
"main": "lib/setup-bats.js",
Expand Down

0 comments on commit ec15951

Please sign in to comment.