| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- name: Build Pip package
- on:
- workflow_dispatch:
- push:
- jobs:
- build:
- runs-on: ubuntu-22.04
- permissions:
- id-token: write
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: true
- fetch-depth: 1
- - name: Set up Python
- uses: actions/setup-python@v5
- with:
- python-version: '3.11'
- architecture: x64
- - uses: awalsh128/cache-apt-pkgs-action@latest
- with:
- packages: ripgrep build-essential python3-dev python3-setuptools libssl-dev libldap2-dev libsasl2-dev zlib1g-dev libatomic1 gnupg2 curl wget python3-ldap python3-msgpack python3-mutagen python3-regex python3-pycryptodome procps
- version: 1.0
- - uses: pdm-project/setup-pdm@v3
- with:
- python-version: '3.11'
- cache: true
- - name: Install dependencies
- run: pdm install --fail-fast --no-lock --group :all --no-self
- - name: Build package
- run: |
- pdm build
- - name: Install from build
- run: pip install ./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
- #- name: Publish package distributions to PyPI
- # run: pdm publish --no-build
- # - 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 "[email protected]"
- # 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
|