/
niceSOFT
/
python3-pyOpenSSL
Обзор
Документация
Войти
/
niceSOFT
/
python3-pyOpenSSL
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
25.1.0
.github/workflows/release.yml
56 строк
1 KB
dependabot[bot]
Bump actions/download-artifact from 4.2.1 to 4.3.0 (#1427)
25 апр 2025, 13:07
Не верифицирован
25 апр 2025, 13:07
56d20e7
Код
Авторство
О чём код?
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Set up Python uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 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@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 with: name: pyopenssl-dists path: dist/ - name: publish if: github.event_name == 'push' uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4 with: attestations: true