From 72fb65a8885943f2809e246efb85768888dc7b89 Mon Sep 17 00:00:00 2001 From: Mauro de Souza Date: Wed, 1 Nov 2023 13:54:34 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=20fix:=20snake=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/generators/workflows/sections/snake.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/generators/workflows/sections/snake.ts b/src/generators/workflows/sections/snake.ts index 32a661f..d750fc9 100644 --- a/src/generators/workflows/sections/snake.ts +++ b/src/generators/workflows/sections/snake.ts @@ -14,18 +14,21 @@ on: jobs: generate: + permissions: + contents: write runs-on: ubuntu-latest + timeout-minutes: 5 steps: - name: generate snake.svg - uses: Platane/snk/svg-only@v2 + uses: Platane/snk/svg-only@v3 with: github_user_name: ${'${{ github.repository_owner }}'} - outputs: dist/snake.svg + outputs: dist/snake.svg?palette=github-dark - name: push snake.svg to the output branch - uses: crazy-max/ghaction-github-pages@v2.6.0 + uses: crazy-max/ghaction-github-pages@v3.1.0 with: target_branch: output build_dir: dist