Skip to content

Commit 1dedc46

Browse files
authored
ci: automated pypi publish on release (#776)
- dependencies: wombat 3.3.11 - ci: pypi publish for pywb - update CHANGES for 2.6.9 release
1 parent f96707d commit 1dedc46

File tree

5 files changed

+46
-3
lines changed

5 files changed

+46
-3
lines changed

.github/workflows/publish_pypi.yaml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Publish to PYPI
2+
on:
3+
release:
4+
types: [published]
5+
6+
jobs:
7+
pypi-release:
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python-version: [3.9]
12+
13+
steps:
14+
- name: checkout
15+
uses: actions/checkout@v1
16+
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v1
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
22+
- name: Install dependencies
23+
run: python -m pip install --upgrade pip wheel twine
24+
25+
- name: Build Dist
26+
run: python setup.py sdist bdist_wheel --universal
27+
28+
- name: Publish package to TestPyPI
29+
uses: pypa/gh-action-pypi-publish@master
30+
with:
31+
user: __token__
32+
password: ${{ secrets.PYPI_API_TOKEN }}
33+

CHANGES.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
pywb 2.6.9 changelist
2+
~~~~~~~~~~~~~~~~~~~~~
3+
4+
* eval rewrite update + latest wombat by @ikreymer in https://github.com/webrecorder/pywb/pull/763
5+
* Rewrite: Support target rewriting, open new windows in top-frame instead by @tw4l in https://github.com/webrecorder/pywb/pull/767
6+
* Add arm64 platform support by @luandro in https://github.com/webrecorder/pywb/pull/775
7+
* Add uwsgi virtualenv information by @tw4l in https://github.com/webrecorder/pywb/pull/770
8+
* update to wombat 3.3.11 to support additional replay improvements
9+
* automated pypi publish on release https://github.com/webrecorder/pywb/pull/776
10+
111
pywb 2.6.8 changelist
212
~~~~~~~~~~~~~~~~~~~~~
313

pywb/static/wombat.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pywb/static/wombatProxyMode.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)