1
0
Fork 0
mirror of synced 2024-06-27 02:20:36 +12:00
ArchiveBox/.github/workflows/pip.yml

63 lines
1.6 KiB
YAML
Raw Normal View History

2021-01-21 13:13:53 +13:00
name: Build Pip package
2020-11-28 23:44:37 +13:00
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-22.04
2020-11-28 23:44:37 +13:00
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.11
2020-11-28 23:44:37 +13:00
architecture: x64
- name: Build Python Package
run: |
2020-11-28 23:51:17 +13:00
pip3 install --upgrade pip setuptools wheel
rm -Rf pip_dist/*.whl
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
2021-04-13 19:59:44 +12: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}
# - name: Commit built package
# 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
# - name: Push build to Github
# uses: ad-m/github-push-action@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# repository: ArchiveBox/pip-archivebox
# branch: ${{ github.ref }}
# directory: pip_dist