diff options
Diffstat (limited to '.github/workflows')
| -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: |
