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

Loading…
Cancel
Save