Skip to content

Commit

Permalink
ci: Run nightly benchmark against nightly n8n image
Browse files Browse the repository at this point in the history
Depends on #10580
  • Loading branch information
tomi committed Aug 28, 2024
1 parent bc958be commit 59a1bc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmark-nightly.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Run Nightly Benchmark
run-name: Benchmark ${{ inputs.n8n_tag }}
run-name: Benchmark ${{ inputs.n8n_tag || 'nightly' }}

on:
schedule:
Expand Down Expand Up @@ -60,10 +60,10 @@ jobs:

- name: Run the benchmark with debug logging
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

- name: Run the benchmark
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

0 comments on commit 59a1bc2

Please sign in to comment.