Skip to content

Commit

Permalink
ci: automated pypi publish on release (#776)
Browse files Browse the repository at this point in the history
- dependencies: wombat 3.3.11
- ci: pypi publish for pywb
- update CHANGES for 2.6.9 release
  • Loading branch information
ikreymer committed Nov 19, 2022
1 parent f96707d commit 1dedc46
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 3 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/publish_pypi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publish to PYPI
on:
release:
types: [published]

jobs:
pypi-release:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]

steps:
- name: checkout
uses: actions/checkout@v1

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: python -m pip install --upgrade pip wheel twine

- name: Build Dist
run: python setup.py sdist bdist_wheel --universal

- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
pywb 2.6.9 changelist
~~~~~~~~~~~~~~~~~~~~~

* eval rewrite update + latest wombat by @ikreymer in https://github.com/webrecorder/pywb/pull/763
* Rewrite: Support target rewriting, open new windows in top-frame instead by @tw4l in https://github.com/webrecorder/pywb/pull/767
* Add arm64 platform support by @luandro in https://github.com/webrecorder/pywb/pull/775
* Add uwsgi virtualenv information by @tw4l in https://github.com/webrecorder/pywb/pull/770
* update to wombat 3.3.11 to support additional replay improvements
* automated pypi publish on release https://github.com/webrecorder/pywb/pull/776

pywb 2.6.8 changelist
~~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion pywb/static/wombat.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pywb/static/wombatProxyMode.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion wombat
Submodule wombat updated 4 files
+1 −1 .eslintrc.json
+1 −1 package.json
+89 −21 src/wombat.js
+7 −7 yarn.lock

0 comments on commit 1dedc46

Please sign in to comment.