Skip to content

Merge pull request #5 from kamuridesu/snyk-fix-45dcf748a5713af290ee19… #13

Merge pull request #5 from kamuridesu/snyk-fix-45dcf748a5713af290ee19…

Merge pull request #5 from kamuridesu/snyk-fix-45dcf748a5713af290ee19… #13

Workflow file for this run

name: CD
on:
push:
branches:
- main
jobs:
deploy:
name: "Publish on PYPI"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python3 -m
build
--sdist
--wheel
--outdir dist/
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}