From 5fb5600ad749821145b6449dd2f6cf9ad8582497 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Sat, 26 Oct 2024 19:47:50 -0500 Subject: this might fix the issue... --- .github/workflows/deploy_static.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/deploy_static.yml b/.github/workflows/deploy_static.yml index 55818fa..455b15c 100644 --- a/.github/workflows/deploy_static.yml +++ b/.github/workflows/deploy_static.yml @@ -2,7 +2,7 @@ name: Deploy Website to Github Pages on: push: - branches: ["build"] + branches: ["main"] workflow_dispatch: permissions: @@ -21,8 +21,11 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: + # switch to build branch - name: Checkout uses: actions/checkout@v4 + with: + ref: build - name: Setup Pages uses: actions/configure-pages@v5 -- cgit v1.3.1