Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: automated pypi publish on release #776

Merged
merged 2 commits into from
Nov 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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