Skip to content

Commit

Permalink
Last test
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed May 6, 2024
1 parent 4c4ebf1 commit 8b3e526
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
init:
runs-on: ubuntu-latest
outputs:
git_path: ${{ steps.git-path.outputs.path }}
git_path2: ${{ steps.git-path.outputs.path2 }}
PULL_REQUEST_HEAD_REF: ${{ github.event.pull_request.head.ref }}
PULL_REQUEST_BASE_REF: ${{ github.event.pull_request.base.ref }}
PULL_REQUEST_CLONE_URL: ${{ github.event.pull_request.head.repo.clone_url }}
Expand All @@ -18,7 +20,8 @@ jobs:
- name: Init path
id: git-path
run: |
echo '$PULL_REQUEST_HEAD_REF'
echo 'path=${{ github.event.pull_request.head.ref }}' >> $GITHUB_OUTPUT
echo "path2=${{ github.event.pull_request.head.ref }}" >> $GITHUB_OUTPUT
performance-testing:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -83,3 +86,12 @@ jobs:
echo '${{ needs.init.outputs.PULL_REQUEST_HEAD_REF }}'
echo '${{ needs.init.outputs.PULL_REQUEST_BASE_REF }}'
echo '${{ needs.init.outputs.PULL_REQUEST_CLONE_URL }}'
- name: needs.init.outputs.git_path
run: |
echo "${{ needs.init.outputs.git_path }}"
echo '${{ needs.init.outputs.git_path }}'
echo ${{ needs.init.outputs.git_path }}
echo "${{ needs.init.outputs.git_path2 }}"
echo '${{ needs.init.outputs.git_path2 }}'
echo ${{ needs.init.outputs.git_path2 }}

0 comments on commit 8b3e526

Please sign in to comment.