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 4992673 commit a41fea6Copy full SHA for a41fea6
.github/workflows/tests.yml
@@ -40,6 +40,27 @@ jobs:
40
with:
41
token: ${{ secrets.CODECOV_TOKEN }}
42
43
+ release:
44
+ runs-on: ubuntu-latest
45
+ needs: build
46
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
47
+
48
+ strategy:
49
+ matrix:
50
+ python-version: ["3.10"]
51
52
+ steps:
53
+ - uses: actions/checkout@v3
54
55
+ - name: Install poetry
56
+ run: pipx install "poetry==1.1.15"
57
58
+ - name: Set up Python ${{ matrix.python-version }}
59
+ uses: actions/setup-python@v4
60
+ with:
61
+ python-version: ${{ matrix.python-version }}
62
+ cache: 'poetry'
63
64
- name: Build package
65
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
66
run: poetry build
0 commit comments