diff options
| author | adamjanovsky | 2022-06-02 13:05:40 +0200 |
|---|---|---|
| committer | GitHub | 2022-06-02 13:05:40 +0200 |
| commit | ca40fcfa619d5faba752b2deee577f457546e431 (patch) | |
| tree | c5f95189511f9db0a3452fcb8a12ad959352307c /.github | |
| parent | e8ee684c170c2a5aafb3fa9ded183da8b91fd6c8 (diff) | |
| download | sec-certs-ca40fcfa619d5faba752b2deee577f457546e431.tar.gz sec-certs-ca40fcfa619d5faba752b2deee577f457546e431.tar.zst sec-certs-ca40fcfa619d5faba752b2deee577f457546e431.zip | |
Fix PyPi build (#226)0.0.8
* Update pillow to 9.1.1
* Setup.py -> build during PyPi build
* Fetch whole repository prior to PyPi build
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a061417..0682582a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,16 +9,18 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'crocs-muni/sec-certs' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v2 with: python-version: "3.8" - name: Install build dependencies - run: python -m pip install build wheel + run: python -m pip install build - name: Build distributions shell: bash -l {0} - run: python setup.py sdist bdist_wheel + run: python -m build - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@master with: |
