From 106911dca8a8c37fc8d51d02210a49844f23c291 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Mon, 20 Nov 2023 01:45:30 -0700 Subject: [PATCH] try to force GitHub Pages to be enabled on repository in publish workflow --- .github/workflows/publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 87f84f4a..86b9aa89 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,13 +21,15 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v3 + with: + enablement: true - name: Install Ruby and Jekyll uses: ruby/setup-ruby@v1 with: ruby-version: '3.2' bundler-cache: true - - name: Setup Pages - uses: actions/configure-pages@v3 - name: Configure Site run: | sed -i "s/^#baseurl: .*/baseurl: \/${{ github.event.repository.name }}/" _config.yml