mirror of
https://github.com/chatmail/core.git
synced 2026-05-03 05:16:28 +03:00
Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.13.0 to 1.14.0.
- [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases)
- [Commits](ed0c53931b...cef221092e)
---
updated-dependencies:
- dependency-name: pypa/gh-action-pypi-publish
dependency-version: 1.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
name: Publish deltachat-rpc-client to PyPI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [published]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
build:
|
|
name: Build distribution
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
show-progress: false
|
|
persist-credentials: false
|
|
- name: Install pypa/build
|
|
run: python3 -m pip install build
|
|
- name: Build a binary wheel and a source tarball
|
|
working-directory: deltachat-rpc-client
|
|
run: python3 -m build
|
|
- name: Store the distribution packages
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: python-package-distributions
|
|
path: deltachat-rpc-client/dist/
|
|
|
|
publish-to-pypi:
|
|
name: Publish Python distribution to PyPI
|
|
if: github.event_name == 'release'
|
|
needs:
|
|
- build
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: pypi
|
|
url: https://pypi.org/p/deltachat-rpc-client
|
|
permissions:
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: Download all the dists
|
|
uses: actions/download-artifact@v7
|
|
with:
|
|
name: python-package-distributions
|
|
path: dist/
|
|
- name: Publish deltachat-rpc-client to PyPI
|
|
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b
|