diff --git a/.github/workflows/semantic-release-python.yml b/.github/workflows/semantic-release-python.yml new file mode 100644 index 0000000..8c4bebc --- /dev/null +++ b/.github/workflows/semantic-release-python.yml @@ -0,0 +1,23 @@ +name: Semantic Release + +on: + push: + branches: + - master + +jobs: + release: + runs-on: ubuntu-latest + concurrency: release + + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Python Semantic Release + uses: relekang/python-semantic-release@master + with: + github_token: ${{ secrets.GH_TOKEN }} + repository_username: __token__ + repository_password: ${{ secrets.PYPI_TOKEN }}