build: re-enable composite action steps

This commit is contained in:
Allan Jeremy 2022-09-07 08:34:56 +03:00
parent d6a8aafe18
commit 19314f4f4a
2 changed files with 20 additions and 20 deletions

View file

@ -65,7 +65,7 @@ jobs:
- name: Push benchmark results - name: Push benchmark results
id: pushBenchmarkAttempt1 id: pushBenchmarkAttempt1
# continue-on-error: true continue-on-error: true
uses: ./.github/workflows/push-results uses: ./.github/workflows/push-results
with: with:
repository: ${{ matrix.benchResultsRepo.name }} repository: ${{ matrix.benchResultsRepo.name }}

View file

@ -41,23 +41,23 @@ runs:
token: ${{ inputs.token }} token: ${{ inputs.token }}
path: ${{ inputs.path }} path: ${{ inputs.path }}
# - name: Store results - name: Store results
# uses: Roblox/rhysd-github-action-benchmark@v-luau uses: Roblox/rhysd-github-action-benchmark@v-luau
# with: with:
# name: ${{ inputs.bench_name }} name: ${{ inputs.bench_name }}
# tool: ${{ inputs.bench_tool }} tool: ${{ inputs.bench_tool }}
# gh-pages-branch: ${{ inputs.branch }} gh-pages-branch: ${{ inputs.branch }}
# output-file-path: ${{ inputs.bench_output_file_path }} output-file-path: ${{ inputs.bench_output_file_path }}
# external-data-json-path: ${{ inputs.bench_external_data_json_path }} external-data-json-path: ${{ inputs.bench_external_data_json_path }}
# - name: Push benchmark results - name: Push benchmark results
# shell: bash shell: bash
# run: | run: |
# echo "Pushing benchmark results..." echo "Pushing benchmark results..."
# cd gh-pages cd gh-pages
# git config user.name github-actions git config user.name github-actions
# git config user.email github@users.noreply.github.com git config user.email github@users.noreply.github.com
# git add *.json git add *.json
# git commit -m "Add benchmarks results for ${{ github.sha }}" git commit -m "Add benchmarks results for ${{ github.sha }}"
# git push git push
# cd .. cd ..