From 50a3c63436aa33f7330ba5825a064f48537b3882 Mon Sep 17 00:00:00 2001 From: Huw Wilkins Date: Mon, 22 Jan 2024 11:42:05 +1100 Subject: [PATCH] Fix dotrun install. --- .github/workflows/actions.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index b56d03617..078d178bd 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -130,7 +130,9 @@ jobs: - name: Install dotrun uses: canonical/install-dotrun@main - name: Install dependencies - run: dotrun install + run: | + sudo chmod -R 777 . + dotrun install - name: Build assets run: dotrun --env CI=false build - name: Run dotrun