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 a33a25e commit c4f8393Copy full SHA for c4f8393
.github/workflows/post-release.yml
@@ -9,7 +9,10 @@ on:
9
10
jobs:
11
extract-project:
12
+ name: Extract project name from git tag
13
runs-on: ubuntu-latest
14
+ outputs:
15
+ project: ${{ steps.extract-project-name.outputs.project }}
16
steps:
17
- name: Extract Project Name
18
id: extract-project-name
@@ -25,6 +28,7 @@ jobs:
25
28
echo "Extracted project '$PROJECT_NAME' from '$TAG_NAME'"
26
29
27
30
upload-test-coverage:
31
+ name: Upload tests coverage for project
32
33
needs: extract-project
34
if: ${{ needs.extract-project.outputs.project != '' }}
0 commit comments