Skip to content

Commit a6e0fe4

Browse files
committed
chore(cicd): Update deployment pipeline
1 parent 3cf54dc commit a6e0fe4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/pypi_deploy.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,22 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
11+
1112
- name: Set up Python 3.9
1213
uses: actions/setup-python@v2
1314
with:
1415
python-version: 3.9
16+
1517
- name: Install Poetry
16-
uses: abatilo/actions-poetry@v2.1.3
18+
uses: abatilo/actions-poetry@v2.1.4
19+
with:
20+
poetry-version: 1.2.0b1
21+
1722
- name: Install airflow-dbt-python with Poetry
1823
run: poetry install
24+
1925
- name: Build airflow-dbt-python with Poetry
2026
run: poetry build
27+
2128
- name: Publish airflow-dbt-python to PyPI with Poetry
2229
run: poetry publish --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)