aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-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