/
niceSOFT
/
python3-pyOpenSSL
Обзор
Документация
Войти
/
niceSOFT
/
python3-pyOpenSSL
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/release.yml
58 строк
1 KB
dependabot[bot]
Bump pypa/gh-action-pypi-publish from 1.14.1 to 1.14.2 (#1528)
06 авг 2026, 13:33
Не верифицирован
06 авг 2026, 13:33
499f424
Код
Авторство
О чём код?
on: workflow_dispatch: push: tags: - "*.*.*" name: release permissions: contents: read jobs: build: name: Build distributions for PyPI runs-on: ubuntu-latest steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Set up Python uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 - name: Install build dependencies run: python -m pip install uv - name: Build distributions run: python -m uv build - name: Upload distributions uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: pyopenssl-dists path: dist/ pypi: name: Publish to PyPI runs-on: ubuntu-latest needs: - build permissions: # Used to authenticate to PyPI via OIDC. id-token: write steps: - name: fetch dists uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: pyopenssl-dists path: dist/ - name: publish if: github.event_name == 'push' uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2 with: attestations: true