/
niceSOFT
/
python3-build
Обзор
Документация
Войти
/
niceSOFT
/
python3-build
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.4.4
.github/workflows/cd.yml
70 строк
2 KB
dependabot[bot]
build(deps): bump the actions group across 1 directory with 4 updates (#1014)
09 апр 2026, 22:41
Не верифицирован
09 апр 2026, 22:41
fe9693c
Код
Авторство
О чём код?
name: CD on: workflow_dispatch: pull_request: branches: - main push: tags: - "[0-9]+.[0-9]+.[0-9]+" - "[0-9]+.[0-9]+.[0-9]+.post[0-9]+" release: types: - published permissions: {} jobs: dist: runs-on: ubuntu-latest permissions: contents: read steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 with: persist-credentials: false - uses: hynek/build-and-inspect-python-package@fe0a0fb1925ca263d076ca4f2c13e93a6e92a33e # v2.17.0 create-release: needs: [dist] runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') permissions: contents: write steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 with: fetch-depth: 0 persist-credentials: false - name: Create GitHub Release run: gh release create "$RELEASE_TAG" --generate-notes env: GH_TOKEN: ${{ github.token }} RELEASE_TAG: ${{ github.ref_name }} publish: needs: [dist] runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') || (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@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 with: name: Packages path: dist - name: Generate artifact attestation for sdist and wheel uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1.0 with: subject-path: "dist/build-*" - uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1