Skip to content

Merge pull request #28 from databrickslabs/feature/dlt-meta-uc #5

Merge pull request #28 from databrickslabs/feature/dlt-meta-uc

Merge pull request #28 from databrickslabs/feature/dlt-meta-uc #5

Workflow file for this run

name: release
on:
push:
tags:
- 'v*' # only release a versioned tag, such as v.X.Y.Z
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 1
matrix:
python-version: [ 3.9 ]
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
cache-dependency-path: setup.py
- name: Install pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -U -e ".[dev]"
- name: Build dist
run: pip wheel -w dist . --no-deps
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.LABS_PYPI_TOKEN }}