mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.2 KiB
YAML
51 lines
1.2 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@v5
|
|
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@v5
|
|
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@v6
|
|
with:
|
|
name: python-package-distributions
|
|
path: dist/
|
|
- name: Publish deltachat-rpc-client to PyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|