Skip to content

Merge pull request #53 from trisdoan/leverage-odoo-module-migrator #73

Merge pull request #53 from trisdoan/leverage-odoo-module-migrator

Merge pull request #53 from trisdoan/leverage-odoo-module-migrator #73

Workflow file for this run

name: Publish
on:
push:
tags:
jobs:
publish:
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install pypa/build
run: python -m pip install build
- name: Build a binary wheel and a source tarball
run: python -m build
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_token }}