Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 6dbe764

Browse files
authored
Merge pull request #101 from dequelabs/releaseScript
chore: create release script
2 parents 7ee59e9 + afceb5e commit 6dbe764

3 files changed

Lines changed: 1317 additions & 3 deletions

File tree

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,3 +175,21 @@ To see additional information like test tool name, version and environment detai
175175
```
176176
axe www.deque.com --verbose
177177
```
178+
179+
## Publishing
180+
181+
Publishing `axe-cli` to the npm registry is handled by CircleCI. To publish a stable version, you'll do something like this:
182+
183+
```
184+
# Ensure you have the latest code
185+
$ git checkout develop
186+
$ git pull
187+
# Create a release branch
188+
$ git create-branch release-<YYYY-MM-DD>
189+
# Run the release script
190+
$ npm run release
191+
# push it
192+
$ git push --follow-tags origin release-<YYYY-MM-DD>
193+
```
194+
195+
Then open a release PR into the `master` branch.

0 commit comments

Comments
 (0)