From 526f98ec8ee610d0dbf29f9f5420ffb612aa24da Mon Sep 17 00:00:00 2001 From: Carl Date: Wed, 20 Dec 2023 05:30:37 +0000 Subject: [PATCH] quarto deploy action requires special permissions when running inside a container --- .github/workflows/quarto.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/quarto.yaml b/.github/workflows/quarto.yaml index 60c4bf4..5f15c27 100644 --- a/.github/workflows/quarto.yaml +++ b/.github/workflows/quarto.yaml @@ -14,6 +14,9 @@ jobs: permissions: contents: write steps: + - name: Quarto-inside-docker permissions + run: git config --system --add safe.directory '*' + - name: Check out repository uses: actions/checkout@v3