Skip to content

Merge pull request #46 from kamuridesu/snyk-fix-028f0d2eb4510fed4d32b… #26

Merge pull request #46 from kamuridesu/snyk-fix-028f0d2eb4510fed4d32b…

Merge pull request #46 from kamuridesu/snyk-fix-028f0d2eb4510fed4d32b… #26

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 }}