1
0
Fork 0
mirror of synced 2024-06-29 19:41:05 +12:00
ArchiveBox/.github/workflows/pip.yml

42 lines
908 B
YAML
Raw Normal View History

2020-11-28 23:44:37 +13:00
name: Pip
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
2020-11-28 23:48:45 +13:00
submodules: true
2020-11-28 23:44:37 +13:00
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
architecture: x64
- name: Build Python Package
run: |
2020-11-28 23:51:17 +13:00
pip3 install --upgrade pip setuptools wheel
2020-11-28 23:44:37 +13:00
python3 setup.py \
sdist --dist-dir=./pip_dist \
bdist_wheel --dist-dir=./pip_dist \
egg_info --egg-base=./pip_dist
pip install pip_dist/archivebox-*.whl
- name: Add some links to test
run: |
mkdir data && cd data
archivebox init
archivebox add 'https://example.com'
archivebox version
archivebox status
# TODO: push to PyPI with twine