From e0e95b59c7fe55da4d787e78b67798dd502b1e48 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Wed, 19 May 2021 09:36:44 -0700 Subject: [PATCH] Update docs workflow (#2342) Summary: Updated to the latest version which apparently doesn't need a privileged token anymore, which would be good news. Also updated the message to include a `[ci skip]` which instructs CircleCI not to run because we're having a chicken-and-egg-problem here with CircleCI otherwise needing a config to tell it not to run, otherwise it will run and fail because there's no config. Pull Request resolved: https://github.com/facebook/flipper/pull/2342 Test Plan: hopeitwork Task: T91157540 Reviewed By: mweststrate Differential Revision: D28539468 Pulled By: passy fbshipit-source-id: 609c3fa1578e0506aadeb225c4e38ff53db67934 --- .github/workflows/docs.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 421c276ef..0c50c488e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -20,9 +20,9 @@ jobs: working-directory: website/ - name: Deploy - uses: JamesIves/github-pages-deploy-action@3.7.1 + uses: JamesIves/github-pages-deploy-action@4.1.3 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages - FOLDER: website/build - CLEAN: true + branch: gh-pages + folder: website/build + clean: true + commit-message: "[ci skip] Deploying documentation update"