Skip to content

Commit

Permalink
ci(test): proper project name var substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
Serpentiel committed Dec 18, 2023
1 parent 844d0b7 commit c4eb608
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4

- id: selproj
run: echo "project_name=$(make ci-selproj)" >> $GITHUB_OUTPUT
run: echo project_name=$(make ci-selproj | tail -n 1) >> $GITHUB_OUTPUT
env:
AIVEN_TOKEN: ${{ secrets.AIVEN_TOKEN }}
AIVEN_PROJECT_NAME_PREFIX: ${{ secrets.AIVEN_PROJECT_NAME_PREFIX }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4

- id: selproj
run: echo "project_name=$(make ci-selproj)" >> $GITHUB_OUTPUT
run: echo project_name=$(make ci-selproj | tail -n 1) >> $GITHUB_OUTPUT
env:
AIVEN_TOKEN: ${{ secrets.AIVEN_TOKEN }}
AIVEN_PROJECT_NAME_PREFIX: ${{ secrets.AIVEN_PROJECT_NAME_PREFIX }}
Expand Down

0 comments on commit c4eb608

Please sign in to comment.