Skip to content

Commit

Permalink
chore: added release instructions to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
alecdwm committed Nov 21, 2023
1 parent 74c99aa commit 5a314d6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,21 @@ npm install @talismn/subshape-fork
import * as $ from "@talismn/subshape-fork"
```

## Creating a release

```bash
VERSION="0.0.1" # change this to the new version number

# Build & publish a release to npm
deno task dnt $VERSION
cd target/npm_pkg
npm publish

# Publish a release tag to GitHub for future reference
git tag --no-sign $VERSION
git push origin --tags
```

## Demo

### Craft a Composable Shape
Expand Down

0 comments on commit 5a314d6

Please sign in to comment.