aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2024-10-26 19:47:50 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2024-10-26 19:47:50 -0500
commit5fb5600ad749821145b6449dd2f6cf9ad8582497 (patch)
treea6715a55fdaa150f18749d86c20198e0fd1420d5
parent141eb93dd2c4492509d146078190009d0aa32b52 (diff)
this might fix the issue...
-rw-r--r--.github/workflows/deploy_static.yml5
1 files changed, 4 insertions, 1 deletions
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