From 43441cd6e5d205b911d1f68fc67a1758513d3190 Mon Sep 17 00:00:00 2001 From: Mark Nazzaro Date: Mon, 19 Feb 2024 10:40:50 -0500 Subject: [PATCH] Ok just add sudo --- .github/workflows/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index c13595c0..ee3ed483 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -12,6 +12,10 @@ jobs: if: github.event.repository.fork == false steps: - uses: actions/checkout@v4 + - name: Configure Git Credentials + run: | + git config user.name github-actions[bot] + git config user.email 41898282+github-actions[bot]@users.noreply.github.com - uses: actions/setup-python@v5 with: python-version: 3.x @@ -22,7 +26,7 @@ jobs: path: .cache restore-keys: | mkdocs-material- - - run: apt-get install pngquant + - run: sudo apt-get install pngquant - run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git - run: pip install mkdocs-macros-plugin - run: mkdocs gh-deploy --force