Merge pull request #216 from microsoft/v1.8.0rc1_dataroots #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Release new version | |
on: # yamllint disable-line rule:truthy | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release-version: | |
name: Release new version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: pip install -r dev_requirements.txt | |
- name: Verify version match | |
run: python setup.py verify | |
- name: Initialize .pypirc | |
run: | | |
echo -e "[pypi]" >> ~/.pypirc | |
echo -e "username = __token__" >> ~/.pypirc | |
echo -e "password = ${{ secrets.PYPI_DBT_SYNAPSE }}" >> ~/.pypirc | |
- name: Build and publish package | |
run: | | |
python setup.py sdist bdist_wheel | |
twine upload dist/* |