From f8d2c9b27060c29916776bc20a02866f55d34c0f Mon Sep 17 00:00:00 2001 From: "Tim J. Kicker" Date: Thu, 18 May 2023 14:40:55 +0200 Subject: [PATCH] try and error nr4 --- .github/workflows/pages.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 1b83cc2..406dede 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -8,12 +8,18 @@ on: jobs: pages: runs-on: ubuntu-latest + permissions: + contents: write steps: - - uses: actions/checkout@v2 - - name: Use Node.js 12.x - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 with: - node-version: '12.x' + token: ${{ secrets.GITHUB_TOKEN }} + # If your repository depends on submodule, please see: https://github.com/actions/checkout + submodules: recursive + - name: Use Node.js 16.x + uses: actions/setup-node@v2 + with: + node-version: '16' - name: Cache NPM dependencies uses: actions/cache@v2 with: @@ -29,5 +35,4 @@ jobs: uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./public - publish_branch: master # deploying branch + publish_dir: ./public \ No newline at end of file