Skip to content

Commit

Permalink
Fix typo in workflow file
Browse files Browse the repository at this point in the history
Fix repo name
  • Loading branch information
tomwhite committed Mar 20, 2024
1 parent cc9e5b8 commit 7d3dcfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
process-results:
needs: tests
name: Combine separate benchmark results
if: always() && github.repository == 'cubed-dev/benchmarks'
if: always() && github.repository == 'cubed-dev/cubed-benchmarks'
runs-on: ubuntu-latest
concurrency:
# Fairly strict concurrency rule to avoid stepping on benchmark db.
Expand All @@ -148,7 +148,7 @@ jobs:

- name: Download benchmark db
env:
AWS_ACCESS_KEY_ID: ${{ ssecrets.AWS_ACCESS_KEY_ID }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: us-east-2 # this is needed for boto for some reason
DB_NAME: benchmark.db
Expand All @@ -161,7 +161,7 @@ jobs:
bash ci/scripts/combine-dbs.sh
- name: Upload benchmark db
if: always() && github.ref == 'refs/heads/main' && github.repository == 'cubed-dev/benchmarks'
if: always() && github.ref == 'refs/heads/main' && github.repository == 'cubed-dev/cubed-benchmarks'
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down

0 comments on commit 7d3dcfe

Please sign in to comment.