ci: Run nightly benchmark against nightly n8n image (no-changelog) (#10588)

This commit is contained in:
Tomi Turtiainen 2024-08-30 08:41:09 +03:00 committed by GitHub
parent eb074c04c9
commit 47eb28d767
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,5 @@
name: Run Nightly Benchmark name: Run Nightly Benchmark
run-name: Benchmark ${{ inputs.n8n_tag }} run-name: Benchmark ${{ inputs.n8n_tag || 'nightly' }}
on: on:
schedule: schedule:
@ -60,10 +60,10 @@ jobs:
- name: Run the benchmark with debug logging - name: Run the benchmark with debug logging
if: github.event.inputs.debug == 'true' if: github.event.inputs.debug == 'true'
run: pnpm run-in-cloud --debug run: pnpm run-in-cloud --n8nTag ${{ inputs.n8n_tag || 'nightly' }} --benchmarkTag ${{ inputs.benchmark_tag || 'latest' }} --debug
working-directory: packages/@n8n/benchmark working-directory: packages/@n8n/benchmark
- name: Run the benchmark - name: Run the benchmark
if: github.event.inputs.debug != 'true' if: github.event.inputs.debug != 'true'
run: pnpm run-in-cloud run: pnpm run-in-cloud --n8nTag ${{ inputs.n8n_tag || 'nightly' }} --benchmarkTag ${{ inputs.benchmark_tag || 'latest' }}
working-directory: packages/@n8n/benchmark working-directory: packages/@n8n/benchmark