We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 297cf55 commit 91e9f33Copy full SHA for 91e9f33
.github/workflows/release.yml
@@ -3,10 +3,7 @@ name: EvaP Release
3
on:
4
workflow_dispatch:
5
# TODO: remove
6
- workflow_run:
7
- workflows: [EvaP Test Suite]
8
- types:
9
- - completed
+ pull_request:
10
11
12
jobs:
@@ -18,8 +15,8 @@ jobs:
18
15
id-token: write
19
16
steps:
20
17
- run: |
21
- RUN_ID=$(gh run list --commit "$GITHUB_REF" --status success --workflow "EvaP Test Suite" --json databaseId --jq '.[].databaseId')
22
- gh run download "$RUN_ID" --name wheel --dir dist
+ RUN_ID=$(gh run list --commit "$GITHUB_REF" --status success --workflow "EvaP Test Suite" --json databaseId --jq '.[].databaseId')
+ gh run download "$RUN_ID" --name wheel --dir dist
23
- run: tar tvf dist/*.tar.gz
24
- run: unzip -l dist/*.whl
25
- name: Publish package distributions to PyPI
0 commit comments