mirror of
https://github.com/cve-search/PyVulnerabilityLookup.git
synced 2024-11-25 16:27:23 +00:00
4e5146142c
Some checks failed
Python application - MyPy / Python ${{ matrix.python-version }} sample (3.12) (push) Has been cancelled
Python application - MyPy / Python ${{ matrix.python-version }} sample (3.10) (push) Has been cancelled
Python application - MyPy / Python ${{ matrix.python-version }} sample (3.11) (push) Has been cancelled
Python application - MyPy / Python ${{ matrix.python-version }} sample (3.8) (push) Has been cancelled
Python application - MyPy / Python ${{ matrix.python-version }} sample (3.9) (push) Has been cancelled
Python application - Test Public Interface / Python ${{ matrix.python-version }} sample (3.10) (push) Has been cancelled
Python application - Test Public Interface / Python ${{ matrix.python-version }} sample (3.11) (push) Has been cancelled
Python application - Test Public Interface / Python ${{ matrix.python-version }} sample (3.12) (push) Has been cancelled
Python application - Test Public Interface / Python ${{ matrix.python-version }} sample (3.8) (push) Has been cancelled
Python application - Test Public Interface / Python ${{ matrix.python-version }} sample (3.9) (push) Has been cancelled
27 lines
664 B
YAML
27 lines
664 B
YAML
on:
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
name: release
|
|
|
|
jobs:
|
|
pypi-publish:
|
|
name: Upload release to PyPI
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: pypi
|
|
url: https://pypi.org/p/PyVulnerabilityLookup
|
|
|
|
permissions:
|
|
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install Poetry
|
|
run: python -m pip install --upgrade pip poetry
|
|
- name: Build artifacts
|
|
run: poetry build
|
|
- name: Publish package distributions to PyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|