From ff2b69187309fc14e9ba90c55599856e57f4abfd Mon Sep 17 00:00:00 2001 From: Jon Camfield Date: Wed, 10 Jul 2024 21:34:47 -0400 Subject: [PATCH] Update publish-to-gh-pages.yml --- .github/workflows/publish-to-gh-pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-to-gh-pages.yml b/.github/workflows/publish-to-gh-pages.yml index 7caf3222..802c9edc 100644 --- a/.github/workflows/publish-to-gh-pages.yml +++ b/.github/workflows/publish-to-gh-pages.yml @@ -9,7 +9,7 @@ name: Deploy Jekyll site to Pages on: # Runs on pushes targeting the default branch push: - branches: [$default-branch] + branches: gh-pages # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -50,7 +50,7 @@ jobs: JEKYLL_ENV: production - name: Set CNAME # set cname for gh pages, should match config file site.url variable above - run: echo "ghpages.level-up.cc" > ./_site/CNAME + run: echo "www.level-up.cc" > ./_site/CNAME - name: Upload artifact # Automatically uploads an artifact from the './_site' directory by default uses: actions/upload-pages-artifact@v3