mirror of
https://github.com/httpie/cli.git
synced 2024-11-28 18:53:21 +01:00
34 lines
796 B
YAML
34 lines
796 B
YAML
name: Release on PyPI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
branch:
|
|
description: "The branch, tag or SHA to release from"
|
|
required: true
|
|
default: "master"
|
|
|
|
jobs:
|
|
pypi-build-and-release:
|
|
name: Build and Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.inputs.branch }}
|
|
|
|
- uses: actions/setup-python@v3
|
|
with:
|
|
python-version: 3.9
|
|
|
|
- name: Install pypa/build
|
|
run: python -m pip install build
|
|
|
|
- name: Build a binary wheel and a source tarball
|
|
run: python -m build --sdist --wheel --outdir dist/
|
|
|
|
- name: Release on PyPI
|
|
uses: pypa/gh-action-pypi-publish@master
|
|
with:
|
|
password: ${{ secrets.PYPI_TOKEN }}
|