/
niceSOFT
/
python3-build
Обзор
Документация
Войти
/
niceSOFT
/
python3-build
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.2.2.post1
.github/workflows/cd.yml
44 строки
957 B
Henry Schreiner
ci: add PyPI attestations (#821)
06 окт 2024, 19:46
Не верифицирован
06 окт 2024, 19:46
0580c6d
Код
Авторство
О чём код?
name: CD on: workflow_dispatch: pull_request: branches: - main release: types: - published jobs: dist: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: hynek/build-and-inspect-python-package@v2 publish: needs: [dist] runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' environment: name: pypi url: https://pypi.org/p/build permissions: id-token: write attestations: write steps: - uses: actions/download-artifact@v4 with: name: Packages path: dist - name: Generate artifact attestation for sdist and wheel uses: actions/attest-build-provenance@1c608d11d69870c2092266b3f9a6f3abbf17002c # v1.4.3 with: subject-path: "dist/build-*" - uses: pypa/gh-action-pypi-publish@release/v1 with: attestations: true