Skip to content

Commit af6eeaf

Browse files
committed
add readme
1 parent 14415b1 commit af6eeaf

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

release/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# VRL release steps
2+
3+
1. Create a release PR
4+
5+
```shell
6+
python3 -m release.create_release_pull_request <version>
7+
```
8+
9+
2. Wait for the PR to be merged
10+
11+
3. Run the publish script
12+
13+
```shell
14+
python3 -m release.publish.py
15+
```

release/publish.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def publish_vrl(version):
3535

3636
def assert_no_changelog_fragments():
3737
entries = os.listdir(CHANGELOG_DIR)
38-
error = f"{CHANGELOG_DIR} should only contain a README.md file. Did you run ./scripts/generate_release_changelog.sh?"
38+
error = f"{CHANGELOG_DIR} should only contain a README.md file. Did you run ../scripts/generate_release_changelog.sh?"
3939
assert len(entries) == 1, error
4040
assert entries[0] == "README.md", error
4141

0 commit comments

Comments
 (0)