From 6e8fe31369adb6ae842e8a6cb21d2443566b0233 Mon Sep 17 00:00:00 2001 From: itsscb Date: Fri, 23 Aug 2024 15:28:44 +0200 Subject: [PATCH] fix: syntax error in gh action file --- .github/workflows/prod.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 45eaeb7..33a7f74 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -14,15 +14,15 @@ jobs: uses: actions/checkout@v4 - name: Cache dependencies - uses: actions/cache@v4 - with: - path: | - node_modules - ~/.cache/trunk - ~/.cargo - target/ - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - restore-keys: ${{ runner.os }}-cargo-wordl + uses: actions/cache@v4 + with: + path: | + node_modules + ~/.cache/trunk + ~/.cargo + target/ + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + restore-keys: ${{ runner.os }}-cargo-wordl - name: Install Rust uses: actions-rs/toolchain@v1