We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf54dc commit a6e0fe4Copy full SHA for a6e0fe4
.github/workflows/pypi_deploy.yaml
@@ -8,15 +8,22 @@ jobs:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v2
11
+
12
- name: Set up Python 3.9
13
uses: actions/setup-python@v2
14
with:
15
python-version: 3.9
16
17
- name: Install Poetry
- uses: abatilo/actions-poetry@v2.1.3
18
+ uses: abatilo/actions-poetry@v2.1.4
19
+ with:
20
+ poetry-version: 1.2.0b1
21
22
- name: Install airflow-dbt-python with Poetry
23
run: poetry install
24
25
- name: Build airflow-dbt-python with Poetry
26
run: poetry build
27
28
- name: Publish airflow-dbt-python to PyPI with Poetry
29
run: poetry publish --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}
0 commit comments