pywidevine/.github/workflows/cd.yml

42 lines
956 B
YAML
Raw Normal View History

2022-07-20 13:31:43 +00:00
name: cd
on:
push:
tags:
- "v*"
jobs:
tagged-release:
name: Tagged Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-07-20 13:31:43 +00:00
- name: Set up Python
uses: actions/setup-python@v4
2022-07-20 13:31:43 +00:00
with:
2023-12-06 15:29:59 +00:00
python-version: "3.12"
2022-07-20 13:31:43 +00:00
- name: Install Poetry
uses: abatilo/actions-poetry@v2
2022-07-20 13:31:43 +00:00
with:
poetry-version: 1.6.1
- name: Install project
run: poetry install --only main
- name: Build project
2022-07-20 13:31:43 +00:00
run: poetry build
- name: Upload wheel
uses: actions/upload-artifact@v3
2022-07-20 13:31:43 +00:00
with:
name: Python Wheel
path: "dist/*.whl"
- name: Deploy release
uses: marvinpinto/action-automatic-releases@latest
with:
prerelease: false
repo_token: "${{ secrets.GITHUB_TOKEN }}"
files: |
dist/*.whl
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: poetry publish