Browse Source

fix workflow arguments (#977)

remotes/origin/list-filter
Gal Schlezinger 2 years ago committed by GitHub
parent
commit
f3a2247868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      .github/workflows/rust.yml

15
.github/workflows/rust.yml

@ -107,7 +107,7 @@ jobs: @@ -107,7 +107,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
cache: "pnpm"
- name: Get pnpm store directory
id: pnpm-cache
run: |
@ -141,7 +141,7 @@ jobs: @@ -141,7 +141,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
cache: "pnpm"
- name: Get pnpm store directory
id: pnpm-cache
run: |
@ -213,7 +213,7 @@ jobs: @@ -213,7 +213,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
cache: "pnpm"
- name: Get pnpm store directory
id: pnpm-cache
run: |
@ -282,7 +282,7 @@ jobs: @@ -282,7 +282,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
key: arm-binary-${{ matrix.arch }}
- name: 'Download `cross` crate'
- name: "Download `cross` crate"
run: cargo install cross
- uses: actions/checkout@v3
- name: "Build release"
@ -341,7 +341,7 @@ jobs: @@ -341,7 +341,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
cache: "pnpm"
- name: Get pnpm store directory
id: pnpm-cache
run: |
@ -385,7 +385,7 @@ jobs: @@ -385,7 +385,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
cache: "pnpm"
- name: Get pnpm store directory
id: pnpm-cache
run: |
@ -414,10 +414,9 @@ jobs: @@ -414,10 +414,9 @@ jobs:
uses: thollander/actions-comment-pull-request@v2
with:
message: |
<!--benchy comment-->
## Linux Benchmarks for ${{ github.event.pull_request.head.sha }}
${{ steps.benchmark.outputs.markdown }}
comment_includes: '<!--benchy comment-->'
comment_tag: "benchy comment"
- name: Create a commit comment
if: ${{ !github.event.pull_request }}

Loading…
Cancel
Save