From b656e1be6fed5a8d4a25be4431745dd0522e4020 Mon Sep 17 00:00:00 2001 From: Allan Jeremy Date: Thu, 18 Aug 2022 14:41:50 +0300 Subject: [PATCH] debug wip: update shell --- .github/workflows/push-results/action.yml | 25 +++++++++++++---------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/.github/workflows/push-results/action.yml b/.github/workflows/push-results/action.yml index f98201f1..75f406c8 100644 --- a/.github/workflows/push-results/action.yml +++ b/.github/workflows/push-results/action.yml @@ -3,39 +3,42 @@ description: Checkout a given repo and push results to GitHub inputs: repository: required: true - # type: string + type: string description: The benchmark results repository to check out + shell: + type: string + default: "bash" branch: required: true - # type: string + type: string description: The benchmark results repository's branch to check out token: required: true - # type: string + type: string description: The GitHub token to use for pushing results path: required: true - # type: string + type: string description: The path to check out the results repository to bench_name: required: true - # type: string + type: string bench_tool: required: true - # type: string + type: string bench_output_file_path: required: true - # type: string + type: string bench_external_data_json_path: required: true - # type: string + type: string runs: using: "composite" steps: - name: Checkout repository uses: actions/checkout@v3 - # shell: bash + shell: ${{ inputs.shell }} with: repository: ${{ inputs.repository }} ref: ${{ inputs.branch }} @@ -44,7 +47,7 @@ runs: - name: Store results uses: Roblox/rhysd-github-action-benchmark@v-luau - # shell: bash + shell: ${{ inputs.shell }} with: name: ${{ inputs.bench_name }} tool: ${{ inputs.bench_tool }} @@ -52,7 +55,7 @@ runs: external-data-json-path: ${{ inputs.bench_external_data_json_path }} - name: Push benchmark results - # shell: bash + shell: ${{ inputs.shell }} run: | echo "Pushing benchmark results..." cd gh-pages