From 58fe971d728c3ea4ecd06642c37cd68f0841a5a9 Mon Sep 17 00:00:00 2001 From: Ziping Liu Date: Fri, 27 Oct 2023 05:42:31 -0500 Subject: [PATCH] fix: use workign action flow for git static page --- .github/workflows/canaryapp.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/canaryapp.yml b/.github/workflows/canaryapp.yml index 07d8e2a..9b352ff 100644 --- a/.github/workflows/canaryapp.yml +++ b/.github/workflows/canaryapp.yml @@ -14,6 +14,9 @@ jobs: - uses: actions/checkout@v3 - name: Install dependencies run: npm install - - name: Build and then Deploy the static react canary app that uses the react adobe coponent - uses: omkartapale/react-deployment-gh-pages@v1.0.0 - + - name: deploy to gh-pages + uses: peaceiris/actions-gh-pages@v3 + with: + deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} + publish_dir: ./build + \ No newline at end of file