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 3161f99 commit 739a3a2Copy full SHA for 739a3a2
.github/workflows/tests.yml
@@ -52,6 +52,27 @@ jobs:
52
with:
53
token: ${{ secrets.CODECOV_TOKEN }}
54
55
+ release:
56
+ runs-on: ubuntu-latest
57
+ needs: build
58
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
59
+
60
+ strategy:
61
+ matrix:
62
+ python-version: ["3.10"]
63
64
+ steps:
65
+ - uses: actions/checkout@v3
66
67
+ - name: Install poetry
68
+ run: pipx install "poetry==1.1.15"
69
70
+ - name: Set up Python ${{ matrix.python-version }}
71
+ uses: actions/setup-python@v4
72
+ with:
73
+ python-version: ${{ matrix.python-version }}
74
+ cache: 'poetry'
75
76
- name: Build package
77
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
78
run: poetry build
0 commit comments