Skip to content

Remove PW method for publishing to PyPi #57

Remove PW method for publishing to PyPi

Remove PW method for publishing to PyPi #57

name: Release to PyPI
on:
push:
branches:
- master
jobs:
build-and-publish:
name: Build and publish mscheck on PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@master
- name: Python setup ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Build dist
run: |
python setup.py sdist
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1