Skip to content

Commit c4f8393

Browse files
committed
ci(release): Fix using project as an output from previous job
1 parent a33a25e commit c4f8393

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/post-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ on:
99

1010
jobs:
1111
extract-project:
12+
name: Extract project name from git tag
1213
runs-on: ubuntu-latest
14+
outputs:
15+
project: ${{ steps.extract-project-name.outputs.project }}
1316
steps:
1417
- name: Extract Project Name
1518
id: extract-project-name
@@ -25,6 +28,7 @@ jobs:
2528
echo "Extracted project '$PROJECT_NAME' from '$TAG_NAME'"
2629
2730
upload-test-coverage:
31+
name: Upload tests coverage for project
2832
runs-on: ubuntu-latest
2933
needs: extract-project
3034
if: ${{ needs.extract-project.outputs.project != '' }}

0 commit comments

Comments
 (0)