From 138c55d5aed57b9821acfd9ab1f349961ee65cdf Mon Sep 17 00:00:00 2001 From: Alvaro Segura Del Barco Date: Mon, 14 Oct 2024 13:41:41 -0600 Subject: [PATCH] usar working directory --- .github/workflows/ci.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b1ac0dc..b95e625 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,6 +17,9 @@ jobs: with: key: ${{ github.ref }} path: .cache - - run: cd mkdocs - - run: pip install -r requirements.txt - - run: mkdocs gh-deploy --force + - name: Install requirements + working-directory: ./mkdocs + run: pip install -r requirements.txt + - name: Deploy to pages + working-directory: ./mkdocs + run: mkdocs gh-deploy --force