From 1c77cf380d40ab15f97c493adf7a51e4dcc3774c Mon Sep 17 00:00:00 2001 From: Jakub Nowicki Date: Mon, 13 May 2024 12:15:56 +0200 Subject: [PATCH] chore: Change copy direction. --- .github/workflows/publish.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b9b59b2..2a4ef8e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,10 +5,6 @@ on: name: Quarto Publish -defaults: - run: - working-directory: ./docs - jobs: build-deploy: runs-on: ubuntu-latest @@ -18,11 +14,11 @@ jobs: - name: Check out repository uses: actions/checkout@v4 - - name: Copy README - run: cp ../README.md . + - name: Copy Quarto file. + run: cp docs/_quarto.yml . - - name: Copy images - run: cp -r ../img . + - name: Copy styles + run: cp docs/styles.css . - name: Set up Quarto uses: quarto-dev/quarto-actions/setup@v2