Skip to content

Commit 5c87ea1

Browse files
committed
doc: add release process notes
1 parent aacec41 commit 5c87ea1

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

RELEASE.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
## Release process
2+
3+
### Version update
4+
5+
Update version string in
6+
7+
- `package.json` - `"version"` property value
8+
- `files-to-prompt.ts` - `VERSION` variable at the top of the script
9+
- `README.md` - download links for the raw script in the `Installation` section
10+
11+
### Changelog
12+
13+
Generate [CHANGELOG.md](https://github.com/fry69/files-to-prompt-ts/blob/main/CHANGELOG.md) from git tag annotations with this commandline:
14+
15+
```shell
16+
git for-each-ref --sort=-taggerdate --format='## %(refname:short)%n%(contents)%n---%n' refs/tags | sed 's/%n/\n/g' > CHANGELOG.md
17+
```
18+
19+
### jsr.io
20+
21+
- `jsr.json` - `"version"` property value
22+
23+
> **Note:** Updating this version string will trigger the [publish.yml](https://github.com/fry69/files-to-prompt-ts/blob/main/.github/workflows/publish.yml) workflow and upload the repository to `jsr.io` on push to GitHub
24+
25+
### General Notes
26+
27+
- minified build will be generated by [build.yml](https://github.com/fry69/files-to-prompt-ts/blob/main/.github/workflows/build.yml) workflow after **release**
28+
- test output will be generated and inserted into `README.md` by [test.yml](https://github.com/fry69/files-to-prompt-ts/blob/main/.github/workflows/test.yml) after **tagging**
29+
- `test.yml` workflow can fail (`bun test` reports failed tests), pay attention to GitHub notifications
30+

0 commit comments

Comments
 (0)