mirror of https://github.com/docker/docker-py.git
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
name: Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: "Release Tag WITHOUT `v` Prefix (e.g. 6.0.0)"
|
|
required: true
|
|
dry-run:
|
|
description: 'Dry run'
|
|
required: false
|
|
type: boolean
|
|
default: true
|
|
|
|
env:
|
|
DOCKER_BUILDKIT: '1'
|
|
FORCE_COLOR: 1
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.x'
|
|
|
|
- name: Generate Pacakge
|
|
run: |
|
|
pip3 install setuptools wheel
|
|
python setup.py sdist bdist_wheel
|
|
env:
|
|
SETUPTOOLS_SCM_PRETEND_VERSION_FOR_DOCKER: ${{ inputs.tag }}
|
|
|
|
- name: Publish to PyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
if: '! inputs.dry-run'
|
|
with:
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
|
|
- name: Create GitHub release
|
|
uses: ncipollo/release-action@v1
|
|
if: '! inputs.dry-run'
|
|
with:
|
|
artifacts: "dist/*"
|
|
generateReleaseNotes: true
|
|
draft: true
|
|
commit: ${{ github.sha }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
tag: ${{ inputs.tag }}
|