Skip to content

Commit 240c42e

Browse files
committed
Add script for release process
1 parent 4656892 commit 240c42e

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Changelog
2+
=========
3+
4+
.. contents::
5+
6+
Next
7+
----

admin/CHANGELOG.rst

Whitespace-only changes.

admin/release.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env bash
2+
3+
set -ex
4+
5+
# Perform a release.
6+
# See the release process documentation for details.
7+
cd "$(mktemp -d)"
8+
git clone [email protected]:"${GITHUB_OWNER}"/vws-python.git
9+
cd vws-python-mock
10+
virtualenv -p python3 release
11+
source release/bin/activate
12+
pip install --editable .[dev]
13+
python admin/release.py

0 commit comments

Comments
 (0)