From b3220b2215507d42dcb41ed22494180dfdbf7cd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Tue, 30 Apr 2024 05:56:38 +0200 Subject: [PATCH] Use GHA's working-directory --- .github/workflows/deno.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml index f82d3fd..3b8093f 100644 --- a/.github/workflows/deno.yml +++ b/.github/workflows/deno.yml @@ -37,9 +37,8 @@ jobs: run: deno task bench - name: Build docs - run: | - cd docs - deno task build + working-directory: docs + run: deno task build - name: Setup Pages uses: actions/configure-pages@v2