Skip to content

Allow the user to hard ignore certain tables from soft-deletion (#23) #22

Allow the user to hard ignore certain tables from soft-deletion (#23)

Allow the user to hard ignore certain tables from soft-deletion (#23) #22

Workflow file for this run

# Publish package on main branch if it's tagged with 'v*'
name: Publish to PyPI
# Controls when the action will run.
on:
# Triggers the workflow on push events but only for the master branch
push:
tags:
- 'v*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "release"
release:
name: Build and Publish
runs-on: ubuntu-20.04
strategy:
matrix:
python-versions: [3.10.1]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-versions }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build wheels and source tarball
run: >-
poetry build
- name: show temporary files
run: >-
ls -l
- name: publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true