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 f1e1ad1 commit 1d42c81Copy full SHA for 1d42c81
.github/workflows/tests.yml
@@ -77,6 +77,27 @@ jobs:
77
with:
78
token: ${{ secrets.CODECOV_TOKEN }}
79
80
+ release:
81
+ runs-on: ubuntu-latest
82
+ needs: build
83
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
84
+
85
+ strategy:
86
+ matrix:
87
+ python-version: ["3.10"]
88
89
+ steps:
90
+ - uses: actions/checkout@v3
91
92
+ - name: Install poetry
93
+ run: pipx install "poetry==1.1.15"
94
95
+ - name: Set up Python ${{ matrix.python-version }}
96
+ uses: actions/setup-python@v4
97
+ with:
98
+ python-version: ${{ matrix.python-version }}
99
+ cache: 'poetry'
100
101
- name: Build package
102
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
103
run: poetry build
0 commit comments