From 7105cd151ab7f79f151383de3744474d0f595687 Mon Sep 17 00:00:00 2001 From: Richard Frankel Date: Wed, 10 Jul 2024 19:40:27 -0400 Subject: [PATCH] Attempt to fix publish workflow (#199) --- .github/workflows/publish.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 4a4a60f4..d3652023 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -20,8 +20,8 @@ jobs: - name: Build the static site. run: aep-site-gen . out - name: Publish the static site to GitHub Pages. - uses: jamesives/github-pages-deploy-action@releases/v4-init + uses: jamesives/github-pages-deploy-action@v4 with: token: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages - FOLDER: out + branch: gh-pages + folder: out