2021-01-20 19:13:53 -05:00
|
|
|
name: Build Pip package
|
2020-11-28 05:44:37 -05:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-12-11 14:04:30 -05:00
|
|
|
runs-on: ubuntu-20.04
|
2020-11-28 05:44:37 -05:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
2020-11-28 05:48:45 -05:00
|
|
|
submodules: true
|
2020-11-28 05:44:37 -05: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 05:51:17 -05:00
|
|
|
pip3 install --upgrade pip setuptools wheel
|
2020-12-11 11:26:27 -05:00
|
|
|
rm -Rf pip_dist/*.whl
|
2020-11-28 05:44:37 -05: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
|
|
|
|
|
2021-04-13 03:59:44 -04:00
|
|
|
# - name: Push build to PyPI
|
|
|
|
# run: |
|
|
|
|
# cd pip_dist/
|
|
|
|
# python3 -m twine upload --repository testpypi pip_dist/*.{whl,tar.gz}
|
|
|
|
# python3 -m twine upload --repository pypi pip_dist/*.{whl,tar.gz}
|
|
|
|
|
2020-12-11 14:26:37 -05:00
|
|
|
# - name: Commit built package
|
2020-12-11 12:09:40 -05:00
|
|
|
# run: |
|
|
|
|
# cd pip_dist/
|
|
|
|
# git config --local user.email "action@github.com"
|
|
|
|
# git config --local user.name "GitHub Action"
|
|
|
|
# git commit -m "Pip package autobuild" -a
|
|
|
|
|
2020-12-11 14:26:37 -05:00
|
|
|
# - name: Push build to Github
|
2020-12-11 12:09:40 -05:00
|
|
|
# uses: ad-m/github-push-action@master
|
|
|
|
# with:
|
|
|
|
# github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# repository: ArchiveBox/pip-archivebox
|
|
|
|
# branch: ${{ github.ref }}
|
|
|
|
# directory: pip_dist
|
|
|
|
|