From 2a0bf137ac7d02c33d419a5e3b106d46969c5272 Mon Sep 17 00:00:00 2001 From: Daniel Z <5725958+dzil123@users.noreply.github.com> Date: Sat, 26 Feb 2022 10:40:24 -0800 Subject: [PATCH] Update version of github-pages-deploy-action used in templates (#77) The last release of v3 was in 2020. The input parameters are now lowercase, and the token is now automatically taken from the environment. --- .github/workflows/godot-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/godot-ci.yml b/.github/workflows/godot-ci.yml index 62c6dd7..3306236 100644 --- a/.github/workflows/godot-ci.yml +++ b/.github/workflows/godot-ci.yml @@ -81,11 +81,10 @@ jobs: name: web path: build/web - name: Deploy to GitHub Pages 🚀 - uses: JamesIves/github-pages-deploy-action@releases/v3 + uses: JamesIves/github-pages-deploy-action@releases/v4 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages # The branch the action should deploy to. - FOLDER: build/web # The folder the action should deploy. + branch: gh-pages # The branch the action should deploy to. + folder: build/web # The folder the action should deploy. export-mac: name: Mac Export