We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4af745c commit 99221f5Copy full SHA for 99221f5
1 file changed
.github/workflows/release.yml
@@ -6,8 +6,14 @@ on:
6
concurrency:
7
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
8
cancel-in-progress: true
9
+
10
jobs:
11
+ tests:
12
+ uses: ./.github/workflows/tests.yml
13
+ secrets: inherit
14
15
deploy:
16
+ needs: tests
17
runs-on: ubuntu-latest
18
container:
19
image: python:3.12-slim
@@ -25,6 +31,7 @@ jobs:
25
31
run: "poetry build"
26
32
- name: Publish
27
33
run: "poetry config pypi-token.pypi ${{ secrets.PUBLIC_YEPCODE_PYPI_API_TOKEN }} && poetry publish"
34
28
35
create_release:
29
36
needs: deploy
30
37
name: Create Release
0 commit comments